Skip to content

Commit

Permalink
reduce some logs
Browse files Browse the repository at this point in the history
  • Loading branch information
neodix42 committed Oct 20, 2024
1 parent 903f792 commit ef0cd42
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/ton/executors/fift/FiftExecutor.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public Pair<Process, Future<String>> execute(Node node, String... command) {
Thread.currentThread().setName("fift-" + node.getNodeName());

String resultInput = IOUtils.toString(p.getInputStream(), Charset.defaultCharset());
log.debug("{} stopped", "fift-" + node.getNodeName());
// log.debug("{} stopped", "fift-" + node.getNodeName());
p.getInputStream().close();
p.getErrorStream().close();
p.getOutputStream().close();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public Pair<Process, Future<String>> execute(Node node, String... command) {
Thread.currentThread().setName("validator-engine-console " + node.getNodeName());

String resultInput = IOUtils.toString(p.getInputStream(), Charset.defaultCharset());
log.debug("{} stopped", "validator-engine-console " + node.getNodeName());
// log.debug("{} stopped", "validator-engine-console " + node.getNodeName());
log.debug("validator-console exit output: {} ", resultInput);
p.getInputStream().close();
p.getErrorStream().close();
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/ton/utils/MyLocalTonUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ public static String getTonLogLevel(String tonLogLevel) {
public static WalletVersion detectWalletVersion(String accountCode, Address address) {

accountCode = Hex.encodeHexString(Base64.decodeBase64(accountCode)).toUpperCase();
log.debug("{} detected accountCode {}", address.toString(false), accountCode);
// log.debug("{} detected accountCode {}", address.toString(false), accountCode);

WalletVersion walletVersion = null;

Expand Down

0 comments on commit ef0cd42

Please sign in to comment.