commit-gnue
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnue] r9941 - trunk/gnue-common/src/base


From: reinhard
Subject: [gnue] r9941 - trunk/gnue-common/src/base
Date: Wed, 7 Oct 2009 10:05:29 -0500 (CDT)

Author: reinhard
Date: 2009-10-07 10:05:28 -0500 (Wed, 07 Oct 2009)
New Revision: 9941

Modified:
   trunk/gnue-common/src/base/log.py
Log:
If there is no logger configuration file, show only messages with severity
WARNING and up.


Modified: trunk/gnue-common/src/base/log.py
===================================================================
--- trunk/gnue-common/src/base/log.py   2009-10-06 15:23:33 UTC (rev 9940)
+++ trunk/gnue-common/src/base/log.py   2009-10-07 15:05:28 UTC (rev 9941)
@@ -764,7 +764,7 @@
         logging.config.fileConfig(config_files)
     else:
         logging.basicConfig()
-        logging.getLogger().setLevel(logging.DEBUG)
+        logging.getLogger().setLevel(logging.WARNING)
 
     # Use our exception hook.
     sys.excepthook = excepthook





reply via email to

[Prev in Thread] Current Thread [Next in Thread]