[fix] longer error logs

This commit is contained in:
Rushabh Mehta 2016-10-05 17:57:26 +05:30
parent 4db2561a8b
commit 0bdb4b6ec8

View file

@ -14,7 +14,7 @@ def get_logger(module, with_more_info=True):
# handler = logging.StreamHandler()
handler = RotatingFileHandler(
LOG_FILENAME, maxBytes=20000, backupCount=20)
LOG_FILENAME, maxBytes=100000, backupCount=20)
handler.setFormatter(formatter)
if with_more_info: