[Zope-Checkins] SVN: Zope/trunk/ The SiteErrorLog now copies exceptions to the event log by default

Florent Guillaume fg at nuxeo.com
Tue Dec 13 11:35:07 EST 2005


Log message for revision 40766:
  The SiteErrorLog now copies exceptions to the event log by default

Changed:
  U   Zope/trunk/doc/CHANGES.txt
  U   Zope/trunk/lib/python/Products/SiteErrorLog/SiteErrorLog.py

-=-
Modified: Zope/trunk/doc/CHANGES.txt
===================================================================
--- Zope/trunk/doc/CHANGES.txt	2005-12-13 16:34:01 UTC (rev 40765)
+++ Zope/trunk/doc/CHANGES.txt	2005-12-13 16:35:07 UTC (rev 40766)
@@ -26,6 +26,8 @@
 
     Features added
 
+      - The SiteErrorLog now copies exceptions to the event log by default.
+
       - deprecated OFS.content_types (to be removed in Zope 2.11) and
         replaced all occurences with zope.app.content_types 
 

Modified: Zope/trunk/lib/python/Products/SiteErrorLog/SiteErrorLog.py
===================================================================
--- Zope/trunk/lib/python/Products/SiteErrorLog/SiteErrorLog.py	2005-12-13 16:34:01 UTC (rev 40765)
+++ Zope/trunk/lib/python/Products/SiteErrorLog/SiteErrorLog.py	2005-12-13 16:35:07 UTC (rev 40766)
@@ -71,7 +71,7 @@
     id = 'error_log'
 
     keep_entries = 20
-    copy_to_zlog = 0
+    copy_to_zlog = True
 
     security = ClassSecurityInfo()
 



More information about the Zope-Checkins mailing list