[web] analytics/axiom: only log in prod

This commit is contained in:
Yangshun 2025-08-08 15:48:11 +08:00
parent d84dff1746
commit 4346b4f06a
1 changed files with 2 additions and 1 deletions

View File

@ -131,7 +131,8 @@ export default async function logEvent(
});
const shouldLog =
process.env.NODE_ENV === 'production' || searchParams?.get('debug');
process.env.NEXT_PUBLIC_VERCEL_ENV === 'production' ||
searchParams?.get('debug');
if (!shouldLog) {
console.info('[axiom]', action, payload);