about summary refs log tree commit diff
path: root/src/env.ts
blob: 32ce70670b2f2c35afff87c76822f8f67c858ed8 (plain) (blame)
1
2
3
4
5
6
export const LOG_DEBUG = process.env.EXPO_PUBLIC_LOG_DEBUG || ''
export const LOG_LEVEL = (process.env.EXPO_PUBLIC_LOG_LEVEL || 'info') as
  | 'debug'
  | 'info'
  | 'warn'
  | 'error'