Add thread ID logging to the configuration log.

This commit is contained in:
Daniel Goldberg 2018-02-08 17:41:55 +02:00
parent b74965c285
commit ef0ccc9cc9
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ LOG = None
LOG_CONFIG = {'version': 1,
'disable_existing_loggers': False,
'formatters': {'standard': {
'format': '%(asctime)s [%(process)d:%(levelname)s] %(module)s.%(funcName)s.%(lineno)d: %(message)s'},
'format': '%(asctime)s [%(process)d:%(thread)d:%(levelname)s] %(module)s.%(funcName)s.%(lineno)d: %(message)s'},
},
'handlers': {'console': {'class': 'logging.StreamHandler',
'level': 'DEBUG',