diff --git a/src/logging/LogFilter.ts b/src/logging/LogFilter.ts index 9968e63e..5f0e7ae7 100644 --- a/src/logging/LogFilter.ts +++ b/src/logging/LogFilter.ts @@ -42,7 +42,7 @@ export class LogFilter { } } // neither our children or us have a loglevel high enough, filter out. - if (this._min && !Array.isArray(children) && item.logLevel < this._min) { + if (this._min !== undefined && !Array.isArray(children) && item.logLevel < this._min) { return false; } else { return true;