From bcc141006929924495795286ef9f2ddc4f45303e Mon Sep 17 00:00:00 2001 From: Sam Becker Date: Tue, 4 Mar 2025 07:00:16 -0800 Subject: [PATCH] Remove migration console debug --- src/photo/db/query.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/photo/db/query.ts b/src/photo/db/query.ts index 755b4798..044ec829 100644 --- a/src/photo/db/query.ts +++ b/src/photo/db/query.ts @@ -78,7 +78,6 @@ const safelyQueryPhotos = async ( result = await callback(); } catch (e: any) { let migration = migrationForError(e); - console.log('Query error', e); if (migration) { console.log(`Running Migration ${migration.label} ...`); await migration.run();