From 03483726921584a52fd9b84e2d763a2cbbf9f29f Mon Sep 17 00:00:00 2001 From: Jonathan Jogenfors Date: Tue, 2 Apr 2024 00:47:08 +0200 Subject: [PATCH] remove logging --- server/src/services/library.service.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/server/src/services/library.service.ts b/server/src/services/library.service.ts index a8c5affb8..0b1a9aed0 100644 --- a/server/src/services/library.service.ts +++ b/server/src/services/library.service.ts @@ -631,16 +631,11 @@ export class LibraryService extends EventEmitter { this.logger.log(`Refreshing library: ${job.id}`); const validImportPaths: string[] = []; - console.warn('importPaths', library.importPaths); - console.warn('importPaths', library.importPaths[0]); for (const importPath of library.importPaths) { - console.warn('importPath', importPath); - const validation = await this.validateImportPath(importPath); if (validation.isValid) { validImportPaths.push(path.normalize(importPath)); - console.warn('validImportPaths', importPath); } else { this.logger.error(`Skipping invalid import path: ${importPath}. Reason: ${validation.message}`); }