Fix typo.

This commit is contained in:
Ruben Verborgh
2020-10-12 16:14:28 +02:00
parent 31844a4f40
commit 79defc3abb
4 changed files with 5 additions and 5 deletions

View File

@@ -34,7 +34,7 @@ export class LazyLoggerFactory implements LoggerFactory {
public get loggerFactory(): LoggerFactory {
if (!this.ploggerFactory) {
throw new Error('No logger factory has been set yet. Can be caused logger invocation during initialization.');
throw new Error('No logger factory has been set. Can be caused by logger invocation during initialization.');
}
return this.ploggerFactory;
}