Author: toad
Date: 2008-03-21 19:52:51 +0000 (Fri, 21 Mar 2008)
New Revision: 18689

Modified:
   trunk/freenet/src/freenet/io/xfer/PacketThrottle.java
Log:
Logging

Modified: trunk/freenet/src/freenet/io/xfer/PacketThrottle.java
===================================================================
--- trunk/freenet/src/freenet/io/xfer/PacketThrottle.java       2008-03-21 
19:27:41 UTC (rev 18688)
+++ trunk/freenet/src/freenet/io/xfer/PacketThrottle.java       2008-03-21 
19:52:51 UTC (rev 18689)
@@ -248,7 +248,7 @@
                                _packetsInFlight--;
                                PacketThrottle.this.notifyAll();
                        }
-                       if(logMINOR) Logger.minor(this, "Removed packet: acked 
for "+this);
+                       if(logMINOR) Logger.minor(this, "Removed packet: acked 
for "+this+" for "+PacketThrottle.this);
                }

                public void disconnected() {
@@ -258,7 +258,7 @@
                                _packetsInFlight--;
                                PacketThrottle.this.notifyAll();
                        }
-                       if(logMINOR) Logger.minor(this, "Removed packet: 
disconnected for "+this);
+                       if(logMINOR) Logger.minor(this, "Removed packet: 
disconnected for "+this+" for "+PacketThrottle.this);
                }

                public void fatalError() {
@@ -268,7 +268,7 @@
                                _packetsInFlight--;
                                PacketThrottle.this.notifyAll();
                        }
-                       if(logMINOR) Logger.minor(this, "Removed packet: error 
for "+this);
+                       if(logMINOR) Logger.minor(this, "Removed packet: error 
for "+this+" for "+PacketThrottle.this);
                }

                public void sent() {


Reply via email to