From 3467a574c16648879ec03b03fa1b921d834ab8d9 Mon Sep 17 00:00:00 2001 From: Gabriel De Los Rios Date: Sun, 18 Jan 2026 00:32:28 -0300 Subject: [PATCH] fix: remove console.log --- src/app/dao/BaseDAO.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/dao/BaseDAO.ts b/src/app/dao/BaseDAO.ts index 20dffe2..6ff36f6 100644 --- a/src/app/dao/BaseDAO.ts +++ b/src/app/dao/BaseDAO.ts @@ -64,7 +64,6 @@ export abstract class BaseDAO { sql += updates; const whereSql = this.whereClauseGenerator(where, params); sql += whereSql + ';'; - console.log(sql); const result: { rows: never[] } = await this.sqlite.executeQuery(sql, params); return result; }