Author: dmeyer
Date: Wed Apr 18 17:53:41 2007
New Revision: 2638

Modified:
   trunk/base/src/notifier/async.py

Log:
better error message for unhandled InProgress exceptions

Modified: trunk/base/src/notifier/async.py
==============================================================================
--- trunk/base/src/notifier/async.py    (original)
+++ trunk/base/src/notifier/async.py    Wed Apr 18 17:53:41 2007
@@ -82,7 +82,8 @@
         done because it raised an exception.
         """
         if self.exception_handler.count() == 0:
-            log.error('InProgress exception: %s', 
''.join(traceback.format_exception(*e._exc_info)))
+            trace = ''.join(traceback.format_exception(*e._exc_info))
+            log.error('*** InProgress exception not handled ***\n%s', trace)
         # store result
         self.is_finished = True
         self._exception = e

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to