mirror of
https://github.com/Qortal/qortal.git
synced 2025-07-22 20:26:50 +00:00
Convert TransactionTransformer LOGGER.trace to use lambda for speed
This commit is contained in:
@@ -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);
|
||||
|
||||
|
Reference in New Issue
Block a user