logging changed.

This commit is contained in:
Miroslav Šedivý
2021-01-15 17:17:49 +01:00
parent b9c68107d2
commit ed197d5c76
4 changed files with 26 additions and 23 deletions

View File

@ -20,6 +20,6 @@ export class Logger {
}
public debug(...log: any[]) {
console.log('[%cNEKO%c] [' + this._scope + '] %cDBG', 'color: #498ad8;', '', 'color: #eae364;', ...log)
console.debug('[%cNEKO%c] [' + this._scope + '] %cDBG', 'color: #498ad8;', '', 'color: #eae364;', ...log)
}
}