2072e53144
You can configure the logging system by configuring config/logging.yaml
41 lines
No EOL
978 B
YAML
41 lines
No EOL
978 B
YAML
---
|
|
version: 1
|
|
disable_existing_loggers: False
|
|
formatters:
|
|
simple:
|
|
format: "%(asctime)s - %(levelname)s - %(filename)s:%(name)s.%(funcName)s:%(lineno)d - %(message)s"
|
|
|
|
handlers:
|
|
console:
|
|
class: logging.StreamHandler
|
|
level: DEBUG
|
|
formatter: simple
|
|
stream: ext://sys.stdout
|
|
|
|
info_file_handler:
|
|
class: logging.handlers.RotatingFileHandler
|
|
level: INFO
|
|
formatter: simple
|
|
filename: ./log/info.log
|
|
maxBytes: 10485760 # 10MB
|
|
backupCount: 20
|
|
encoding: utf8
|
|
|
|
error_file_handler:
|
|
class: logging.handlers.RotatingFileHandler
|
|
level: ERROR
|
|
formatter: simple
|
|
filename: ./log/errors.log
|
|
maxBytes: 10485760 # 10MB
|
|
backupCount: 20
|
|
encoding: utf8
|
|
|
|
loggers:
|
|
my_module:
|
|
level: ERROR
|
|
handlers: [console]
|
|
propagate: no
|
|
|
|
root:
|
|
level: DEBUG
|
|
handlers: [console, info_file_handler, error_file_handler] |