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:
parent
138ef9ff1f
commit
ff358fac27
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue