We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d68b499 commit c2f329bCopy full SHA for c2f329b
src/common/abstract.logger.ts
@@ -67,10 +67,10 @@ export abstract class AbstractLogger {
67
if (tmpLogger.LoggerIdentity === this.LoggerIdentity)
68
return true;
69
tmpLogger = tmpLogger.NextLogger;
70
- } while (tmpLogger !== null || tmpLogger !== undefined)
+ } while (tmpLogger !== null && tmpLogger !== undefined)
71
return false;
72
}
73
74
abstract processEvent(source: string, eventName: string, properties: any);
75
abstract processException(source, error: Error, properties: any);
76
-}
+}
0 commit comments