Ver código fonte

Removes the need for the outputLevel in debug

main
Eric Amodio 7 anos atrás
pai
commit
f184feda2c
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      src/logger.ts

+ 1
- 1
src/logger.ts Ver arquivo

@ -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);
}

Carregando…
Cancelar
Salvar