Skip to content

Commit a84ad62

Browse files
committed
Fix debug
1 parent c3f2105 commit a84ad62

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

common/src/envs/constants.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import {
55
IS_LOCAL_ANDROID,
66
IS_WEBVIEW_DEV_PHONE,
77
} from 'common/hosting/constants'
8-
import {debug} from 'common/logger'
98

109
import {DEV_CONFIG} from './dev'
1110
import {PROD_CONFIG} from './prod'
@@ -49,7 +48,7 @@ console.debug(`Running in ${HOSTING_ENV} (${ENV})`)
4948
// }
5049

5150
export const IS_FIREBASE_EMULATOR = process.env.NEXT_PUBLIC_FIREBASE_EMULATOR === 'true'
52-
if (IS_FIREBASE_EMULATOR) debug('Using Firebase emulator.')
51+
if (IS_FIREBASE_EMULATOR) console.debug('Using Firebase emulator.')
5352

5453
export const LOCAL_WEB_DOMAIN = `localhost:3000`
5554
export const LOCAL_BACKEND_DOMAIN = `${IS_WEBVIEW_DEV_PHONE ? '192.168.1.3' : IS_LOCAL_ANDROID ? '10.0.2.2' : 'localhost'}:8088`

0 commit comments

Comments
 (0)