feat: set up analytics
Node.js CI / Lint and Test (push) Successful in 42s

This commit is contained in:
2025-10-07 17:51:48 -07:00
parent c72cbcbf1d
commit 71f11bfe37
5 changed files with 71 additions and 6 deletions
+3
View File
@@ -6,6 +6,7 @@
import { reminders } from "../config/reminders.js";
import { getRandomValue } from "../utils/getRandomValue.js";
import { logger } from "../utils/logger.js";
import type { Message } from "discord.js";
/**
@@ -32,5 +33,7 @@ export const checkAltText = async(message: Message): Promise<void> => {
}).catch(() => {
return null;
});
await logger.metric("alt_text_missing", 1, {});
}
};