From: schlatterbeck Date: Mon, 9 Aug 2010 07:36:06 +0000 (+0000) Subject: - No longer use the root logger, use a logger with prefix "roundup", X-Git-Url: https://git.tokkee.org/?p=roundup.git;a=commitdiff_plain;h=4a503c6713149dca15a2ec86d763cd2efa225b8a - No longer use the root logger, use a logger with prefix "roundup", see http://thread.gmane.org/gmane.comp.bug-tracking.roundup.devel/5356 git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/roundup/trunk@4517 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/CHANGES.txt b/CHANGES.txt index c193357..66aa139 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -17,6 +17,8 @@ Fixed: - fixed reporting of source missing warnings - fix for incorrect except: syntax, issue2550661 (thanks Jakub Wilk) +- No longer use the root logger, use a logger with prefix "roundup", + see http://thread.gmane.org/gmane.comp.bug-tracking.roundup.devel/5356 2010-07-12 1.4.15 diff --git a/roundup/configuration.py b/roundup/configuration.py index f010842..dbbac6f 100644 --- a/roundup/configuration.py +++ b/roundup/configuration.py @@ -1290,8 +1290,8 @@ class CoreConfig(Config): return _file = self["LOGGING_FILENAME"] - # set file & level on the root logger - logger = logging.getLogger() + # set file & level on the roundup logger + logger = logging.getLogger('roundup') if _file: hdlr = logging.FileHandler(_file) else: