Update ApResolverService.ts

This commit is contained in:
syuilo 2023-01-25 12:36:39 +09:00
parent 945c50db1f
commit 3ba5541a66
1 changed files with 2 additions and 1 deletions

View File

@ -38,7 +38,8 @@ export class Resolver {
private recursionLimit = 100,
) {
this.history = new Set();
this.logger = this.loggerService.getLogger('ap-resolve'); // なぜか TypeError: Cannot read properties of undefined (reading 'getLogger') と言われる
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
this.logger = this.loggerService?.getLogger('ap-resolve'); // なぜか TypeError: Cannot read properties of undefined (reading 'getLogger') と言われる
}
@bindThis