Skip to content

Commit 6fb16bc

Browse files
committed
level_logger: set text_error_level at 50 (higher level than previously)
1 parent 4c9723f commit 6fb16bc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

doc/specs/stdlib_logger.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ filtering the log messages. These constants, termed severity levels, are
7272
`io_error_level`, `text_error_level`, and `none_level`.
7373
All log messages with a level (e.g., `debug_level`) lower than a
7474
specified severity level (e.g., `information_level`) will be ignored.
75-
The levels `error_level`, `io_error_level`, and `text_error_level`
76-
have the same severity. The default severity level is `information_level`.
75+
The levels `error_level` and `io_error_level` have the same severity.
76+
The default severity level is `information_level`.
7777

7878

7979
## The derived type: logger_type

src/stdlib_logger.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ module stdlib_logger
7474
warning_level = 30, &
7575
error_level = 40, &
7676
io_error_level = 40, &
77-
text_error_level = 40, &
77+
text_error_level = 50, &
7878
all_level = -10 + min( &
7979
debug_level, &
8080
information_level, &

0 commit comments

Comments
 (0)