You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now, I've tried to run my program in Windows in the following ways:
./myprogram > stdout.log
./myprogram 2> stderr.log
./myprogram > stdout.log 2> stderr.log
In both versions 1 and 2, the logging is written to the output log file and not to the console. Version 3 is as expected, and the logging is only written to stderr.log.
The text was updated successfully, but these errors were encountered:
I have the following config:
Now, I've tried to run my program in Windows in the following ways:
./myprogram > stdout.log
./myprogram 2> stderr.log
./myprogram > stdout.log 2> stderr.log
In both versions 1 and 2, the logging is written to the output log file and not to the console. Version 3 is as expected, and the logging is only written to stderr.log.
The text was updated successfully, but these errors were encountered: