29 lines
498 B
INI
Executable File
29 lines
498 B
INI
Executable File
[loggers]
|
|
keys=root,notify
|
|
|
|
[handlers]
|
|
keys=notify
|
|
|
|
[formatters]
|
|
keys=simpleFormatter
|
|
|
|
[logger_root]
|
|
level=DEBUG
|
|
handlers=notify
|
|
|
|
[logger_notify]
|
|
level=DEBUG
|
|
handlers=notify
|
|
qualname=notify
|
|
propagate=0
|
|
|
|
[handler_notify]
|
|
class=logging.handlers.RotatingFileHandler
|
|
level=DEBUG
|
|
formatter=simpleFormatter
|
|
args=("/var/log/airtime/pypo/notify.log", 'a', 1000000, 5,)
|
|
|
|
[formatter_simpleFormatter]
|
|
format=%(asctime)s %(levelname)s - [%(filename)s : %(funcName)s() : line %(lineno)d] - %(message)s
|
|
datefmt=
|