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

Skip to content
Snippets Groups Projects
Unverified Commit 4c10b414 authored by zzz's avatar zzz
Browse files

InNetMessagePool: Remove some low-level logging

parent 4c15a0e1
Branches
Tags
No related merge requests found
......@@ -302,18 +302,18 @@ public class InNetMessagePool implements Service {
int sz = origMessages.size();
if (sz <= 0)
return 0;
if (_log.shouldLog(Log.DEBUG)) {
_log.debug("Original messages for inbound message: " + sz);
if (sz > 1)
_log.debug("Orig: " + origMessages + " \nthe above are replies for: " + messageBody);
}
//if (_log.shouldLog(Log.DEBUG)) {
// _log.debug("Original messages for inbound message: " + sz);
// if (sz > 1)
// _log.debug("Orig: " + origMessages + " \nthe above are replies for: " + messageBody);
//}
for (int i = 0; i < sz; i++) {
OutNetMessage omsg = origMessages.get(i);
ReplyJob job = omsg.getOnReplyJob();
if (_log.shouldLog(Log.DEBUG))
_log.debug("Original message [" + i + "] " + omsg.getReplySelector()
+ " : " + omsg + ": reply job: " + job);
//if (_log.shouldLog(Log.DEBUG))
// _log.debug("Original message [" + i + "] " + omsg.getReplySelector()
// + " : " + omsg + ": reply job: " + job);
if (job != null) {
job.setMessage(messageBody);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment