diff --git a/src/app/services/processlog.service.ts b/src/app/services/processlog.service.ts index 372e180..0feda37 100644 --- a/src/app/services/processlog.service.ts +++ b/src/app/services/processlog.service.ts @@ -25,7 +25,7 @@ export class ProcessLogService { } emitNewLogsIfNoLiveLogs(logs: LogMessage) { - if (!config.console.showLiveLogs) { + if (!this.showLiveLogs) { this.newLogs.next(logs); } }