Skip to content

Commit ad99d7e

Browse files
committedApr 10, 2025
Don't log events we don't care about.
1 parent 5fde290 commit ad99d7e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎src/server/forumWebhook.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,9 @@ export default async function forumWebhook(req: express.Request<{}, {}, any>, re
9090
}
9191
else return;
9292
}
93-
else {
94-
logger.warn('Unknown event type for forum webhook', {data});
95-
}
93+
// else {
94+
// logger.warn('Unknown event type for forum webhook', {data});
95+
// }
9696
}
9797

9898
async function postToDiscord(webhookMessage: RESTPostAPIWebhookWithTokenJSONBody, logger: Logger): Promise<PromiseSettledResult<void>[]> {

0 commit comments

Comments
 (0)