We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4cf0db commit 9d1779aCopy full SHA for 9d1779a
application/src/main/java/org/togetherjava/tjbot/features/basic/CoolMessagesBoardManager.java
@@ -49,8 +49,9 @@ public void onMessageReactionAdd(MessageReactionAddEvent event) {
49
Optional<TextChannel> boardChannel = getBoardChannel(event.getJDA(), guildId);
50
51
if (boardChannel.isEmpty()) {
52
- logger.warn("Tried to find the board channel in server {} but was unable to do so",
53
- guildId);
+ logger.warn(
+ "Could not find board channel with pattern '{}' in server with ID '{}'. Skipping reaction handling...",
54
+ this.config.boardChannelPattern(), guildId);
55
return;
56
}
57
0 commit comments