Skip to content

Commit 03ce0ab

Browse files
committed
Fixing log message that was outputting at Info when it should be a debug message.
1 parent da1672e commit 03ce0ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/io/topiacoin/eosrpcadapter/RPCChain.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ public TransactionBinArgs abiJsonToBin(String code,
385385

386386
EOSRPCAdapter.EOSRPCResponse response = rpcAdapter.postRequest(getBlockURL, requestString);
387387

388-
_log.info("ABI JSON to Bin Response: " + response);
388+
_log.debug("ABI JSON to Bin Response: " + response);
389389

390390
if (response.response != null) {
391391
abiJsonToBinResponse = _objectMapper.readValue(response.response, TransactionBinArgs.class);

0 commit comments

Comments
 (0)