refactor(backend): remove unused logger option

This commit is contained in:
syuilo
2024-06-06 10:01:50 +09:00
parent d4a8c63264
commit dbf9e1194b
5 changed files with 10 additions and 14 deletions

View File

@@ -53,7 +53,7 @@ export class FileServerService {
private internalStorageService: InternalStorageService,
private loggerService: LoggerService,
) {
this.logger = this.loggerService.getLogger('server', 'gray', false);
this.logger = this.loggerService.getLogger('server', 'gray');
//this.createServer = this.createServer.bind(this);
}