I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 2972e79f authored by zzz's avatar zzz
Browse files

* OutNetMessage: Fix NPE when log level = INFO (ticket #676)

parent 4d32eaa0
No related branches found
No related tags found
No related merge requests found
......@@ -325,7 +325,7 @@ public class OutNetMessage {
buf.append(" with onFailedReply job: ").append(_onFailedReply);
if (_onFailedSend != null)
buf.append(" with onFailedSend job: ").append(_onFailedSend);
if (_log.shouldLog(Log.INFO)) {
if (_timestamps != null && _timestampOrder != null && _log.shouldLog(Log.INFO)) {
buf.append(" {timestamps: \n");
renderTimestamps(buf);
buf.append("}");
......@@ -335,7 +335,8 @@ public class OutNetMessage {
}
/**
* Only useful if log level is INFO or DEBUG
* Only useful if log level is INFO or DEBUG;
* locked_initTimestamps() must have been called previously
*/
private void renderTimestamps(StringBuilder buf) {
synchronized (this) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment