diff --git a/src/logging/LogItem.ts b/src/logging/LogItem.ts index f9262db7..cd5a5a8b 100644 --- a/src/logging/LogItem.ts +++ b/src/logging/LogItem.ts @@ -184,7 +184,7 @@ export class LogItem implements ILogItem { * @return {[type]} [description] */ run(callback: LogCallback): T { - if (this.end) { + if (this.end !== undefined) { console.trace("log item is finished, additional logs will likely not be recorded"); } try {