lets try to reduce creating new objects during finalization

This commit is contained in:
jrandom
2004-06-26 21:15:51 +00:00
committed by zzz
parent 95c7cd55c2
commit 77a8a46d8e

View File

@ -241,7 +241,7 @@ public class OutNetMessage {
buf.append("Undiscarded ").append(_messageSize).append("byte ");
buf.append(_messageType).append(" message created ");
buf.append((_context.clock().now() - _created)).append("ms ago: ");
buf.append(_messageId).append(" to ").append(_target.calculateHash().toBase64());
buf.append(_messageId); // .append(" to ").append(_target.calculateHash().toBase64());
buf.append(", timing - \n");
renderTimestamps(buf);
_log.error(buf.toString(), _createdBy);