forked from Qortal/qortal
Convert TransactionTransformer LOGGER.trace to use lambda for speed
This commit is contained in:
parent
4b5ed79c5a
commit
aa54ec212f
@ -187,7 +187,7 @@ public abstract class TransactionTransformer extends Transformer {
|
||||
if (bytes == null)
|
||||
return null;
|
||||
|
||||
LOGGER.trace("tx hex: " + HashCode.fromBytes(bytes).toString());
|
||||
LOGGER.trace(() -> "tx hex: " + HashCode.fromBytes(bytes).toString());
|
||||
|
||||
ByteBuffer byteBuffer = ByteBuffer.wrap(bytes);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user