diff --git a/common/src/logger.ts b/common/src/logger.ts index 084a5d63..900f6dae 100644 --- a/common/src/logger.ts +++ b/common/src/logger.ts @@ -1,5 +1,4 @@ import {IS_PROD} from 'common/envs/constants' -import {IS_LOCAL} from 'common/hosting/constants' /** * Log level severity types @@ -152,7 +151,6 @@ export function logPageView(path: string): void { * @returns Current log level threshold */ const currentLevel = (): LogLevel => { - if (IS_LOCAL) return 'debug' if (IS_PROD || process.env.NODE_ENV == 'production') return 'info' return 'debug' }