logging: set stderr as default unit
1 unresolved thread
1 unresolved thread
For some reason, logging to stdout is not working with gfortran.
This MR fixes this by setting the default logging unit to stderr as in the original logging package.
See: MPR!102 (merged)
Merge request reports
Activity
Filter activity
changed milestone to %v1.0
added Bug label
assigned to @muellese
103 103 integer, public, parameter :: LOG_TRACE = LOG_LEVEL_TRACE_DEF !< = 6, Extremely detailed output, compile your program with -DENABLE_LOG_TRACE to enable 104 104 integer, public, parameter :: LOG_SUBTRACE = LOG_LEVEL_SUBTRACE_DEF !< = 7, More Extremely detailed output, compile your program with -DENABLE_LOG_TRACE to enable 105 105 106 integer, public, save :: log_unit = stdout !< By default, log to stdout for level > 2 106 integer, public, save :: log_unit = stderr !< By default, log to stdout for level > 2 changed this line in version 2 of the diff
requested review from @kaluza
mentioned in commit e72c5a95