Author: toad
Date: 2008-02-07 13:27:56 +0000 (Thu, 07 Feb 2008)
New Revision: 17655

Modified:
   trunk/freenet/src/freenet/node/MessageItem.java
Log:
logging

Modified: trunk/freenet/src/freenet/node/MessageItem.java
===================================================================
--- trunk/freenet/src/freenet/node/MessageItem.java     2008-02-07 13:03:22 UTC 
(rev 17654)
+++ trunk/freenet/src/freenet/node/MessageItem.java     2008-02-07 13:27:56 UTC 
(rev 17655)
@@ -62,7 +62,7 @@
                        try {
                                ctrCallback.sentBytes(length);
                        } catch (Throwable t) {
-                               Logger.error(this, "Caught "+t+" reporting 
"+length+" sent bytes on "+this);
+                               Logger.error(this, "Caught "+t+" reporting 
"+length+" sent bytes on "+this, t);
                        }
                }
                if(cb != null) {
@@ -70,7 +70,7 @@
                                try {
                                        cb[i].sent();
                                } catch (Throwable t) {
-                                       Logger.error(this, "Caught "+t+" 
calling sent() on "+cb[i]+" for "+this);
+                                       Logger.error(this, "Caught "+t+" 
calling sent() on "+cb[i]+" for "+this, t);
                                }
                        }
                }


Reply via email to