mirror of
https://github.com/jumpserver/lina.git
synced 2025-10-22 08:08:39 +00:00
12 lines
263 B
JavaScript
12 lines
263 B
JavaScript
const isProduction = process.env.NODE_ENV === 'production'
|
|
|
|
export default {
|
|
isEnabled: true,
|
|
logLevel: isProduction ? 'error' : 'debug',
|
|
stringifyArguments: false,
|
|
showLogLevel: true,
|
|
showMethodName: true,
|
|
separator: '|',
|
|
showConsoleColors: true
|
|
}
|