[Neo-report] r2496 gregory - /trunk/neo/storage/app.py

nobody at svn.erp5.org nobody at svn.erp5.org
Thu Dec 9 18:17:17 CET 2010


Author: gregory
Date: Thu Dec  9 18:17:17 2010
New Revision: 2496

Log:
Fix logging of pending events.

Modified:
    trunk/neo/storage/app.py

Modified: trunk/neo/storage/app.py
==============================================================================
--- trunk/neo/storage/app.py [iso-8859-1] (original)
+++ trunk/neo/storage/app.py [iso-8859-1] Thu Dec  9 18:17:17 2010
@@ -337,9 +337,8 @@ class Application(object):
             return
         neo.logging.info("Pending events:")
         for event, _msg_id, _conn, args, _kwargs in self.event_queue:
-            oid, serial, _compression, _checksum, data, tid, time = args
-            neo.logging.info('  %r: %r:%r by %r -> %r (%r)', event.__name__,
-                dump(oid), dump(serial), dump(tid), data, time)
+            neo.logging.info('  %r: %r:%r %r %r', event.__name__, _msg_id,
+                _conn, args, _kwargs)
 
     def shutdown(self, erase=False):
         """Close all connections and exit"""




More information about the Neo-report mailing list