Skip to content

Commit

Permalink
Add logging for Crank wallet's public key in ObCrankerApplication
Browse files Browse the repository at this point in the history
A logging statement has been added to output the public key of the 'Crank wallet' in the ObCrankerApplication.java file. This is beneficial for debugging purposes as it provides visibility into the specific wallet being used during runtime.
  • Loading branch information
skynetcap committed Feb 4, 2024
1 parent 086d8ac commit b969ce4
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ public void crankEventHeapLoop() {
}
Account finalTradingAccount = tradingAccount;

log.info("Crank wallet: {}", finalTradingAccount.getPublicKey().toBase58());
log.info("RPC: {}", endpoint);

scheduler.scheduleAtFixedRate(() -> {
Expand Down

0 comments on commit b969ce4

Please sign in to comment.