[Zope3-checkins] CVS: Zope3/src/zope/app/startup - sitedefinition.py:1.12

Guido van Rossum guido@python.org
Thu, 6 Mar 2003 13:23:54 -0500


Update of /cvs-repository/Zope3/src/zope/app/startup
In directory cvs.zope.org:/tmp/cvs-serv16168

Modified Files:
	sitedefinition.py 
Log Message:
Oops.  Roll that change back, and explain why we want INFO level
logging by default.


=== Zope3/src/zope/app/startup/sitedefinition.py 1.11 => 1.12 ===
--- Zope3/src/zope/app/startup/sitedefinition.py:1.11	Thu Mar  6 13:20:58 2003
+++ Zope3/src/zope/app/startup/sitedefinition.py	Thu Mar  6 13:23:52 2003
@@ -47,7 +47,10 @@
 
 DEFAULT_STORAGE_FILE = 'Data.fs'
 DEFAULT_LOG_FILE = 'STDERR'
-DEFAULT_LOG_LEVEL = 'WARN'
+DEFAULT_LOG_LEVEL = 'INFO'
+# We show INFO level log messages by default because that's how the
+# service startup messages showing the host and port used for various
+# protocols are logged.
 
 
 class SiteDefinition: