Skip to content
Snippets Groups Projects

logging: set stderr as default unit

Merged Sebastian Müller requested to merge fix_logging_stdout_issue into main
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
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
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
  • Sebastian Müller requested review from @kaluza

    requested review from @kaluza

  • added 1 commit

    • 7c4adf91 - fix doc-string; add note about compiler bug

    Compare with previous version

  • Sebastian Müller approved this merge request

    approved this merge request

  • Maren Kaluza approved this merge request

    approved this merge request

  • mentioned in commit e72c5a95

  • Please register or sign in to reply
    Loading