diff --git a/src/main/decorators/log.decorator.ts b/src/main/decorators/log.decorator.ts index 9c87f932..dd67a4e5 100644 --- a/src/main/decorators/log.decorator.ts +++ b/src/main/decorators/log.decorator.ts @@ -27,10 +27,10 @@ export function Log(options?: LogOptions){ const logOutput = options?.logOutput ?? true; const logArgs = options?.logArgs ?? true; - return (target: unknown, propertyKey: string, descriptor: PropertyDescriptor) => { + return (_target: unknown, propertyKey: string, descriptor: PropertyDescriptor) => { const originalMethod = descriptor.value; - descriptor.value = function(...args: unknown[]) { + descriptor.value = function func(...args: unknown[]) { if (logInput) { logInfo('INPUT', propertyKey, args, logArgs, null); diff --git a/src/main/services/additional-content/maps/song-cache.service.ts b/src/main/services/additional-content/maps/song-cache.service.ts index 751b55d8..26fad375 100644 --- a/src/main/services/additional-content/maps/song-cache.service.ts +++ b/src/main/services/additional-content/maps/song-cache.service.ts @@ -19,7 +19,6 @@ export class SongCacheService { private readonly mapsInfoCache: JsonCache; private constructor(){ - console.log(this.MAPS_INFO_CACHE_PATH); this.mapsInfoCache = new JsonCache(this.MAPS_INFO_CACHE_PATH); }