feat: remove debug logging from event count endpoint

This commit is contained in:
louiscklaw
2025-06-18 13:39:09 +08:00
parent 9c4637528c
commit 80a2636f90

View File

@@ -14,7 +14,7 @@ export async function GET() {
try {
const numOfEvent = await countTotalEvents();
logger('[Event] list', numOfEvent);
// logger('[Event] list', numOfEvent);
return response({ numOfEvent }, STATUS.OK);
} catch (error) {