eruda3 / src /lib /logger.js
soiz1's picture
Migrated from GitHub
271613e verified
raw
history blame contribute delete
236 Bytes
import Logger from 'licia/Logger'
let logger
export default logger = new Logger(
'[Eruda]',
ENV === 'production' ? 'warn' : 'debug'
)
logger.formatter = function (type, argList) {
argList.unshift(this.name)
return argList
}