Skip to content

Commit

Permalink
Merge pull request #1161 from OCR-D/logging-downgrade-level
Browse files Browse the repository at this point in the history
downgrade log level DEBUG -> INFO, #1160
  • Loading branch information
kba authored Jan 8, 2024
2 parents 13572ed + be63755 commit 65bdf92
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions ocrd_utils/ocrd_logging.conf
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ keys=defaultFormatter,detailedFormatter
# default logger "root" using consoleHandler
#
[logger_root]
level=DEBUG
level=INFO
handlers=consoleHandler,fileHandler


Expand All @@ -55,13 +55,13 @@ handlers=consoleHandler,fileHandler

# ocrd loggers
[logger_ocrd]
level=DEBUG
level=INFO
handlers=consoleHandler,fileHandler
qualname=ocrd
propagate=0

[logger_ocrd_network]
level=DEBUG
level=INFO
handlers=consoleHandler,processingServerHandler
qualname=ocrd_network
propagate=0
Expand Down
2 changes: 1 addition & 1 deletion ocrd_utils/ocrd_utils/logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@

LOGGING_DEFAULTS = {
'ocrd': logging.INFO,
'ocrd_network': logging.DEBUG,
'ocrd_network': logging.INFO,
# 'ocrd.resolver': logging.INFO,
# 'ocrd.resolver.download_to_directory': logging.INFO,
# 'ocrd.resolver.add_files_to_mets': logging.INFO,
Expand Down

0 comments on commit 65bdf92

Please sign in to comment.