We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4dc3b37 + 3f5a407 commit 2b5daa3Copy full SHA for 2b5daa3
src/events/threadUpdate.js
@@ -62,7 +62,9 @@ module.exports = {
62
);
63
64
if (tagId === undefined) {
65
- logger.warn(
+ // This is debug instead of warn because it's quite common to have no tags, it means the bot was triggered by a thread
66
+ // change in a channel that doesn't have the tags enabled on it.
67
+ logger.debug(
68
`Unable to lock thread "${newThread.name}": couldn't find tag name ${process.env.SOLVED_TAG_NAME} in channel #${newThread.parent.name}.`,
69
{
70
thread: newThread.name,
0 commit comments