Module: deluge Branch: master Commit: d1b452373371d83bfce85a43c6de8f4b58fbfa5c
Author: Pedro Algarvio <[email protected]> Date: Tue Dec 28 01:58:38 2010 +0000 Let log files be a little bigger, 50Mb is not that much anyway. --- deluge/log.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/deluge/log.py b/deluge/log.py index b014fa9..af610e0 100644 --- a/deluge/log.py +++ b/deluge/log.py @@ -149,7 +149,7 @@ def setupLogger(level="error", filename=None, filemode="w"): import logging.handlers handler = logging.handlers.RotatingFileHandler( filename, filemode, - maxBytes=5*1024*1024, # 5 Mb + maxBytes=50*1024*1024, # 50 Mb backupCount=3, encoding='utf-8', delay=0 -- You received this message because you are subscribed to the Google Groups "deluge-commit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/deluge-commit?hl=en.
