Преглед изворни кода

Removes the need for the outputLevel in debug

main
Eric Amodio пре 7 година
родитељ
комит
f184feda2c
1 измењених фајлова са 1 додато и 1 уклоњено
  1. +1
    -1
      src/logger.ts

+ 1
- 1
src/logger.ts Прегледај датотеку

@ -42,7 +42,7 @@ export class Logger {
}
static log(message?: any, ...params: any[]): void {
if (debug && level !== OutputLevel.Silent) {
if (debug) {
console.log(ConsolePrefix, message, ...params);
}

Loading…
Откажи
Сачувај