ソースを参照

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

読み込み中…
キャンセル
保存