[Checkins] SVN: z3c.jbot/trunk/ Downgrade log messages to debug level. In normal operation they don't contain any valuable information.

Hanno Schlichting hannosch at hannosch.eu
Wed Feb 17 07:50:08 EST 2010


Log message for revision 109092:
  Downgrade log messages to debug level. In normal operation they don't contain any valuable information.
  

Changed:
  U   z3c.jbot/trunk/CHANGES.txt
  U   z3c.jbot/trunk/z3c/jbot/patches.py

-=-
Modified: z3c.jbot/trunk/CHANGES.txt
===================================================================
--- z3c.jbot/trunk/CHANGES.txt	2010-02-17 12:48:05 UTC (rev 109091)
+++ z3c.jbot/trunk/CHANGES.txt	2010-02-17 12:50:08 UTC (rev 109092)
@@ -4,6 +4,9 @@
 0.6.2 (unreleased)
 ------------------
 
+- Downgrade log messages to debug level. In normal operation they don't contain
+  any valuable information. [hannosch]
+
 - Prefer zope.site over zope.app.component if it is available. [hannosch]
 
 0.6.1 (2010-02-09)

Modified: z3c.jbot/trunk/z3c/jbot/patches.py
===================================================================
--- z3c.jbot/trunk/z3c/jbot/patches.py	2010-02-17 12:48:05 UTC (rev 109091)
+++ z3c.jbot/trunk/z3c/jbot/patches.py	2010-02-17 12:50:08 UTC (rev 109092)
@@ -61,7 +61,7 @@
         return five_bind(inst, view, cls)
 
     pt_class.__get__ = get_and_bind
-    logger.info(repr(pt_class))
+    logger.debug(repr(pt_class))
 
     del pt_class
 
@@ -84,13 +84,13 @@
         return zope_bind(inst, view, cls)
 
     pt_class.__get__ = five_get_and_bind
-    logger.info(repr(pt_class))
+    logger.debug(repr(pt_class))
 
     del pt_class
 
 for pt_class in PT_CLASSES:
     pt_class.__get__ = get
-    logger.info(repr(pt_class))
+    logger.debug(repr(pt_class))
 
 # CMF skin layer resources
 try:
@@ -127,4 +127,4 @@
     fs_class.__of__ = get_skin_obj
     fs_class.filename = property(get_filename, set_filename)
 
-    logger.info(repr(fs_class))
+    logger.debug(repr(fs_class))



More information about the checkins mailing list