Skip to content

Commit

Permalink
[hotfix] chore: 버그 해결용 출력문 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
elive7 committed Dec 17, 2024
1 parent 71e372b commit 123429e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/org/recordy/server/slack/domain/Slack.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ public class Slack {

public Slack(HttpServletRequest request) {
String payload = (String) request.getAttribute("slackPayload");

System.out.println("Slack payload = " + payload);
if (payload == null) {
throw new SlackException(ErrorMessage.SLACK_INTERACTION_FAILED);
}
Expand Down

0 comments on commit 123429e

Please sign in to comment.