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

Chris McDonough chrism@zope.com
Mon, 21 Jul 2003 00:16:28 -0400


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

Modified Files:
	SiteErrorLog.py 
Log Message:
2.7 raises NotFound whenever traversal fails, but this should likely
be ignored by the SiteErrorLog (thanks to philikon).


=== Zope/lib/python/Products/SiteErrorLog/SiteErrorLog.py 1.15 => 1.16 ===
--- Zope/lib/python/Products/SiteErrorLog/SiteErrorLog.py:1.15	Fri Feb  7 13:16:37 2003
+++ Zope/lib/python/Products/SiteErrorLog/SiteErrorLog.py	Mon Jul 21 00:16:22 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', )
+    _ignored_exceptions = ( 'Unauthorized', 'NotFound' )
 
     security.declarePrivate('raising')
     def raising(self, info):