mirror of https://github.com/halo-dev/halo-admin
16 lines
352 B
JavaScript
16 lines
352 B
JavaScript
|
import Vue from 'vue'
|
||
|
import VueLogger from 'vuejs-logger'
|
||
|
|
||
|
const isProduction = process.env.NODE_ENV === 'production'
|
||
|
const options = {
|
||
|
isEnabled: true,
|
||
|
logLevel: isProduction ? 'error' : 'debug',
|
||
|
stringifyArguments: false,
|
||
|
showLogLevel: true,
|
||
|
showMethodName: true,
|
||
|
separator: '|',
|
||
|
showConsoleColors: true
|
||
|
}
|
||
|
|
||
|
Vue.use(VueLogger, options)
|