1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Write errors to stderr

This commit is contained in:
cesare 2019-10-30 13:11:55 +00:00
parent 138ef9ff1f
commit ff358fac27

View file

@ -308,7 +308,7 @@ int ConsoleApplication::invokeCatchingFailures (std::function<int()>&& f)
} }
catch (const ConsoleAppFailureCode& error) catch (const ConsoleAppFailureCode& error)
{ {
std::cout << error.errorMessage << std::endl; std::cerr << error.errorMessage << std::endl;
returnCode = error.returnCode; returnCode = error.returnCode;
} }