|
- [loggers]
- keys=root,aiosqlite,databases
-
- [handlers]
- keys=syslog,null
-
- [formatters]
- keys=simpleFormatter
-
- [logger_root]
- level=DEBUG
- handlers=syslog
-
- # Both aiosqlite and databases log sensitive info, DO NOT
- # enable logging on these unless you want to contaminate your
- # logs w/ authentication credentials and other security senstive
- # information
- [logger_aiosqlite]
- level=DEBUG
- handlers=null
- qualname=aiosqlite
- propagate=0
-
- [logger_databases]
- level=DEBUG
- handlers=null
- qualname=databases
- propagate=0
-
- [handler_null]
- class=NullHandler
-
- [handler_syslog]
- class=handlers.SysLogHandler
- level=NOTSET
- formatter=simpleFormatter
- args=('/var/run/log', handlers.SysLogHandler.LOG_USER)
-
- [formatter_simpleFormatter]
- format=bitelab: %(asctime)s.%(msecs)03d - %(name)s - %(levelname)s - %(message)s
- datefmt=%Y-%m-%dT%H:%M:%S
- # XXX This doesn't appear to work
- #converter=time.gmtime
|