Skip to content

Commit

Permalink
Merge pull request #72 from Staketab/dev
Browse files Browse the repository at this point in the history
logging
  • Loading branch information
sineDtS authored May 22, 2024
2 parents f3bf242 + d003e74 commit 90dd563
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,11 @@ public ResponseEntity<String> sendToZkCloudWorker(ZkCloudWorkerRequestDTO reques
Gson gson = new GsonBuilder().setPrettyPrinting().serializeNulls().create();
setDefaultValues(requestDTO);
if(requestDTO.getCommand().equals("sendTransactions")) {
log.info("equals");
log.info(gson.toJson(requestDTO));
}
log.info(gson.toJson(requestDTO));
log.info("-------------------------------------------");
return zkCloudWorkerRestTemplate.postForEntity(PATH_TO_ZK_CLOUD_WORKER, requestDTO, String.class);
}

Expand Down

0 comments on commit 90dd563

Please sign in to comment.