Fix ProcessLogService using global config instead of local

This commit is contained in:
Kristóf Tóth 2018-05-30 14:27:41 +02:00
parent 4b92f5552b
commit de5fdcd71a

View File

@ -25,7 +25,7 @@ export class ProcessLogService {
}
emitNewLogsIfNoLiveLogs(logs: LogMessage) {
if (!config.console.showLiveLogs) {
if (!this.showLiveLogs) {
this.newLogs.next(logs);
}
}