Enhancement

- Output error, header, footnote and debug messages on standard error.
This commit is contained in:
Louis-Claude Canon 2012-06-15 21:16:06 +02:00 committed by Paul Beckingham
parent b093d23f1f
commit b45a305df2
28 changed files with 101 additions and 82 deletions

View file

@ -76,7 +76,7 @@ int main (int argc, const char** argv)
catch (std::string& error)
{
std::cout << error << "\n";
std::cerr << error << "\n";
status = -1;
}