Fix logging file handler

This commit is contained in:
Sylvain Bellemare 2017-04-13 17:23:12 +02:00 committed by Sylvain Bellemare
parent 28042a7e83
commit cae017eb22
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ SUBSCRIBER_LOGGING_CONFIG = {
'level': logging.INFO,
},
'file': {
'class': 'logging.RotatingFileHandler',
'class': 'logging.handlers.RotatingFileHandler',
'filename': join(DEFAULT_LOG_DIR, 'bigchaindb.log'),
'mode': 'w',
'maxBytes': 209715200,