1
0
mirror of https://git.boykissers.com/pawkey/pawkey-sk.git synced 2025-12-20 04:04:16 +00:00

make logger property readonly

This commit is contained in:
PrivateGER
2025-05-30 18:01:36 +02:00
parent 8948369a1b
commit 31f4325e86

View File

@@ -27,7 +27,7 @@ const fs = await import('node:fs/promises');
@Injectable()
export class VideoProcessingService {
private logger: Logger;
private readonly logger: Logger;
constructor(
@Inject(DI.config)
@@ -37,7 +37,7 @@ export class VideoProcessingService {
private loggerService: LoggerService,
) {
this.logger = this.loggerService.getLogger("video-processing");
this.logger = this.loggerService.getLogger('video-processing');
}
@bindThis