Skip to content

Commit

Permalink
ATOR-295 - Measure relays
Browse files Browse the repository at this point in the history
  • Loading branch information
yumirkov committed May 31, 2024
1 parent 7a38410 commit bef939a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/source/man_sbws.ini.rst
Original file line number Diff line number Diff line change
Expand Up @@ -174,9 +174,9 @@ logging
to_file_level = {debug, info, warning, error, critical}
Level to log at when using files. (Default: debug)
to_stdout_level = {debug, info, warning, error, critical}
Level to log at when using stdout. (Default: info)
Level to log at when using stdout. (Default: debug)
to_syslog_level = {debug, info, warning, error, critical}
Level to log at when using syslog. (Default: info)
Level to log at when using syslog. (Default: debug)
format = STR
Format string to use when logging.
(Default: %(asctime)s %(module)s[%(process)s]: <%(levelname)s> %(message)s)
Expand Down
8 changes: 4 additions & 4 deletions sbws/config.default.ini
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,10 @@ to_file_max_bytes = 10485760
to_file_num_backups = 50
# Level to log at. Debug, info, warning, error, critical.
# `level` must be set to the lower of all the handler levels.
level = info
to_file_level = info
to_stdout_level = info
to_syslog_level = info
level = debug
to_file_level = debug
to_stdout_level = debug
to_syslog_level = debug
# Format string to use when logging
format = %(asctime)s %(module)s[%(process)s]: <%(levelname)s> (%(threadName)s) %(message)s
to_stdout_format = ${format}
Expand Down

0 comments on commit bef939a

Please sign in to comment.