[Zope-Checkins] SVN: Zope/branches/Zope-2_8-branch/ The
	SiteErrorLog now copies exceptions to the event log by default
    Florent Guillaume 
    fg at nuxeo.com
       
    Tue Dec 13 11:31:54 EST 2005
    
    
  
Log message for revision 40764:
  The SiteErrorLog now copies exceptions to the event log by default
Changed:
  U   Zope/branches/Zope-2_8-branch/doc/CHANGES.txt
  U   Zope/branches/Zope-2_8-branch/lib/python/Products/SiteErrorLog/SiteErrorLog.py
-=-
Modified: Zope/branches/Zope-2_8-branch/doc/CHANGES.txt
===================================================================
--- Zope/branches/Zope-2_8-branch/doc/CHANGES.txt	2005-12-13 16:01:06 UTC (rev 40763)
+++ Zope/branches/Zope-2_8-branch/doc/CHANGES.txt	2005-12-13 16:31:53 UTC (rev 40764)
@@ -66,6 +66,8 @@
 
     Other
 
+      - The SiteErrorLog now copies exceptions to the event log by default.
+
       - ObjectManager now has an hasObject method to test presence. This
         brings it in line with BTreeFolder.
 
Modified: Zope/branches/Zope-2_8-branch/lib/python/Products/SiteErrorLog/SiteErrorLog.py
===================================================================
--- Zope/branches/Zope-2_8-branch/lib/python/Products/SiteErrorLog/SiteErrorLog.py	2005-12-13 16:01:06 UTC (rev 40763)
+++ Zope/branches/Zope-2_8-branch/lib/python/Products/SiteErrorLog/SiteErrorLog.py	2005-12-13 16:31:53 UTC (rev 40764)
@@ -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