[Zope-Checkins] CVS: Zope/lib/python/Products/SiteErrorLog - SiteErrorLog.py:1.15.12.1.4.1

Tres Seaver cvs-admin at zope.org
Mon Nov 17 17:16:14 EST 2003


Update of /cvs-repository/Zope/lib/python/Products/SiteErrorLog
In directory cvs.zope.org:/tmp/cvs-serv13938/lib/python/Products/SiteErrorLog

Modified Files:
      Tag: tseaver-strexp_delenda-branch
	SiteErrorLog.py 
Log Message:
 - Ignore Redirect exceptions, now that they are objects.


=== Zope/lib/python/Products/SiteErrorLog/SiteErrorLog.py 1.15.12.1 => 1.15.12.1.4.1 ===
--- Zope/lib/python/Products/SiteErrorLog/SiteErrorLog.py:1.15.12.1	Mon Jul 21 12:36:14 2003
+++ Zope/lib/python/Products/SiteErrorLog/SiteErrorLog.py	Mon Nov 17 17:16:13 2003
@@ -118,7 +118,7 @@
     # Exceptions that happen all the time, so we dont need
     # to log them. Eventually this should be configured
     # through-the-web.
-    _ignored_exceptions = ( 'Unauthorized', 'NotFound' )
+    _ignored_exceptions = ( 'Unauthorized', 'NotFound', 'Redirect' )
 
     security.declarePrivate('raising')
     def raising(self, info):




More information about the Zope-Checkins mailing list