[Zope-Checkins] SVN: Products.Five/branches/1.3/fiveconfigure.py
Remove broken use of logging module in Products.Five.fiveconfigure.
Tres Seaver
tseaver at palladion.com
Thu Feb 7 11:57:09 EST 2008
Log message for revision 83624:
Remove broken use of logging module in Products.Five.fiveconfigure.
o See https://bugs.launchpad.net/zope2/+bug/143748
Changed:
U Products.Five/branches/1.3/fiveconfigure.py
-=-
Modified: Products.Five/branches/1.3/fiveconfigure.py
===================================================================
--- Products.Five/branches/1.3/fiveconfigure.py 2008-02-07 16:54:18 UTC (rev 83623)
+++ Products.Five/branches/1.3/fiveconfigure.py 2008-02-07 16:57:08 UTC (rev 83624)
@@ -63,7 +63,8 @@
# XXX It would be really cool if we could make this product appear broken
# in the control panel. However, all attempts to do so has failed from my
# side. //regebro
- logger.error('Could not import Product %s' % product.__name__, error=True)
+ logger.error('Could not import Product %s' % product.__name__,
+ exc_info=True)
def loadProducts(_context):
products = findProducts()
More information about the Zope-Checkins
mailing list