This commit is contained in:
Daniel Scalzi
2018-08-31 12:42:18 -04:00
parent e53b92c38b
commit 7851fdbefb
5 changed files with 16 additions and 12 deletions

View File

@@ -13,6 +13,10 @@ class LoggerUtil {
console.info.apply(null, [this.prefix, this.style, ...arguments])
}
warn(){
console.warn.apply(null, [this.prefix, this.style, ...arguments])
}
debug(){
console.debug.apply(null, [this.prefix, this.style, ...arguments])
}