Add logic to deploy basic Luigi logging config
This commit is contained in:
parent
b554e40e7b
commit
9f29dc67d4
2 changed files with 81 additions and 0 deletions
38
rattail_fabric/deploy/luigi/luigi-logging.conf.mako
Normal file
38
rattail_fabric/deploy/luigi/luigi-logging.conf.mako
Normal file
|
@ -0,0 +1,38 @@
|
|||
# -*- mode: conf; -*-
|
||||
############################################################
|
||||
#
|
||||
# Luigi logging config
|
||||
#
|
||||
############################################################
|
||||
|
||||
|
||||
[loggers]
|
||||
keys = root
|
||||
|
||||
[handlers]
|
||||
keys = file, console
|
||||
|
||||
[formatters]
|
||||
keys = generic, console
|
||||
|
||||
[logger_root]
|
||||
handlers = file, console
|
||||
level = DEBUG
|
||||
|
||||
[handler_file]
|
||||
class = handlers.RotatingFileHandler
|
||||
args = ('${envroot}/app/luigi/log/luigi.log', 'a', 1000000, 20, 'utf_8')
|
||||
formatter = generic
|
||||
|
||||
[handler_console]
|
||||
class = StreamHandler
|
||||
args = (sys.stderr,)
|
||||
formatter = console
|
||||
level = WARNING
|
||||
|
||||
[formatter_generic]
|
||||
format = %(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s
|
||||
datefmt = %Y-%m-%d %H:%M:%S
|
||||
|
||||
[formatter_console]
|
||||
format = %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s
|
Loading…
Add table
Add a link
Reference in a new issue