From de5fdcd71ac567259304e3ab838a9f7d80a1cd43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krist=C3=B3f=20T=C3=B3th?= Date: Wed, 30 May 2018 14:27:41 +0200 Subject: [PATCH] Fix ProcessLogService using global config instead of local --- src/app/services/processlog.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } }