Browse Source

[fix] longer error logs

version-14
Rushabh Mehta 8 years ago
parent
commit
0bdb4b6ec8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      frappe/utils/logger.py

+ 1
- 1
frappe/utils/logger.py 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:


Loading…
Cancel
Save