Skip to content

Commit

Permalink
style(dev): logger
Browse files Browse the repository at this point in the history
  • Loading branch information
cnlimiter committed Mar 10, 2024
1 parent 9e6c00b commit 09b814d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ public void handle(String msg) {
}
try {
JsonObject json = GsonUtils.parse(msg);
client.getLogger().info(json);
client.getLogger().debug(json);
val json2 = TransUtils.arrayToString(GsonUtils.parse(msg));
client.getLogger().info(json2.toString());
client.getLogger().debug(json2.toString());
client.getEventExecutor().execute(() -> {
synchronized (lck) {
event(json2);
Expand Down

0 comments on commit 09b814d

Please sign in to comment.