[Zodb-checkins] CVS: ZODB3/zdaemon - zdoptions.py:1.12

Guido van Rossum guido@python.org
Fri, 24 Jan 2003 11:34:12 -0500


Update of /cvs-repository/ZODB3/zdaemon
In directory cvs.zope.org:/tmp/cvs-serv20223

Modified Files:
	zdoptions.py 
Log Message:
Initialize config_logger to None at the class level.


=== ZODB3/zdaemon/zdoptions.py 1.11 => 1.12 ===
--- ZODB3/zdaemon/zdoptions.py:1.11	Fri Jan 24 08:04:08 2003
+++ ZODB3/zdaemon/zdoptions.py	Fri Jan 24 11:34:09 2003
@@ -16,10 +16,11 @@
     schema = None
     configroot = None
 
-    # Class variable to control automatic processing of a <logger>
+    # Class variable to control automatic processing of an <eventlog>
     # section.  This should be the (possibly dotted) name of something
-    # accessible from configroot, typically "logger".
+    # accessible from configroot, typically "eventlog".
     logsectionname = None
+    config_logger = None # The configured event logger, if any
 
     # Class variable deciding whether positional arguments are allowed.
     # If you want positional arguments, set this to 1 in your subclass.