log tweak
This commit is contained in:
@ -497,7 +497,7 @@ class MessageOutputStream extends OutputStream {
|
|||||||
if (ws.writeFailed())
|
if (ws.writeFailed())
|
||||||
throw new IOException("Flush available failed");
|
throw new IOException("Flush available failed");
|
||||||
else if (!ws.writeAccepted())
|
else if (!ws.writeAccepted())
|
||||||
throw new InterruptedIOException("Flush available timed out");
|
throw new InterruptedIOException("Flush available timed out (" + _writeTimeout + "ms)");
|
||||||
}
|
}
|
||||||
long afterAccept = System.currentTimeMillis();
|
long afterAccept = System.currentTimeMillis();
|
||||||
if ( (afterAccept - afterBuild > 1000) && (_log.shouldLog(Log.DEBUG)) )
|
if ( (afterAccept - afterBuild > 1000) && (_log.shouldLog(Log.DEBUG)) )
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
2011-01-05 zzz
|
||||||
|
* build.xml: Fix findbugs target
|
||||||
|
* Fix some miscellaneous findbugs bugs
|
||||||
|
* i2psnark: Refactor request tracking to prevent possible deadlocks
|
||||||
|
* OCMOSJ: Fix cache bug
|
||||||
|
* TrustedUpdate: Fix key store bug
|
||||||
|
|
||||||
2011-01-02 zzz
|
2011-01-02 zzz
|
||||||
* Console: Disable spellcheck in textareas
|
* Console: Disable spellcheck in textareas
|
||||||
* Data Structures: More tweaks
|
* Data Structures: More tweaks
|
||||||
|
@ -18,7 +18,7 @@ public class RouterVersion {
|
|||||||
/** deprecated */
|
/** deprecated */
|
||||||
public final static String ID = "Monotone";
|
public final static String ID = "Monotone";
|
||||||
public final static String VERSION = CoreVersion.VERSION;
|
public final static String VERSION = CoreVersion.VERSION;
|
||||||
public final static long BUILD = 7;
|
public final static long BUILD = 8;
|
||||||
|
|
||||||
/** for example "-test" */
|
/** for example "-test" */
|
||||||
public final static String EXTRA = "";
|
public final static String EXTRA = "";
|
||||||
|
Reference in New Issue
Block a user