From ea47cb84a4ef1a924ea168ab848c58c2355a8f20 Mon Sep 17 00:00:00 2001 From: Jonathan Jogenfors Date: Wed, 20 Mar 2024 08:43:48 +0100 Subject: [PATCH] remove console logs --- server/src/domain/library/library.service.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/server/src/domain/library/library.service.ts b/server/src/domain/library/library.service.ts index 1d836deec..8f11b0089 100644 --- a/server/src/domain/library/library.service.ts +++ b/server/src/domain/library/library.service.ts @@ -596,8 +596,6 @@ export class LibraryService extends EventEmitter { let existsInImportPath = false; for (const importPath of job.importPaths) { - console.warn(importPath); - console.warn(asset.originalPath); if (asset.originalPath.startsWith(importPath)) { existsInImportPath = true; break;