Skip to content

Commit

Permalink
[feat] 로깅 추가 (#468)
Browse files Browse the repository at this point in the history
* feat: appkey, secretkey 변경

* feat: 로깅 추가
  • Loading branch information
yonghwankim-dev authored Sep 12, 2024
1 parent 0acd593 commit 907e0b2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public void handleMessage(@NotNull WebSocketSession session, WebSocketMessage<?>
} else if (isRealTimeSigningPriceMessage(payload)) {
handleStockTextMessage(payload);
} else {
log.info("Received Message : {}", message);
log.info("Received Message : {}", message.getPayload());
}
}

Expand All @@ -56,7 +56,7 @@ private void handleStockTextMessage(String message) {
String currentPrice = values[2];
KisCurrentPrice kisCurrentPrice = KisCurrentPrice.create(ticker, Long.valueOf(currentPrice));
currentPriceRedisRepository.savePrice(kisCurrentPrice);
log.debug("save the stock currentPrice, {}", kisCurrentPrice);
log.info("save the stock currentPrice, {}", kisCurrentPrice);
}

@Override
Expand Down

0 comments on commit 907e0b2

Please sign in to comment.