fix: Unahdled exception in adding a custom logger

Fix #6
This commit is contained in:
Pratik Bhattacharya 2021-01-27 17:34:30 +05:30 коммит произвёл GitHub
Родитель d68b499686
Коммит c2f329b75d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -67,10 +67,10 @@ export abstract class AbstractLogger {
if (tmpLogger.LoggerIdentity === this.LoggerIdentity)
return true;
tmpLogger = tmpLogger.NextLogger;
} while (tmpLogger !== null || tmpLogger !== undefined)
} while (tmpLogger !== null && tmpLogger !== undefined)
return false;
}
abstract processEvent(source: string, eventName: string, properties: any);
abstract processException(source, error: Error, properties: any);
}
}