From 0a56fc6be0e1f524777f63497233aa4ae48269a0 Mon Sep 17 00:00:00 2001 From: Gabriel De Los Rios Date: Sun, 18 Jan 2026 15:13:05 -0300 Subject: [PATCH] fix: removes console.log --- src/app/dao/ComposedDAO.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/dao/ComposedDAO.ts b/src/app/dao/ComposedDAO.ts index 9531ed0..45b3fc6 100644 --- a/src/app/dao/ComposedDAO.ts +++ b/src/app/dao/ComposedDAO.ts @@ -21,7 +21,6 @@ export abstract class ComposedDAO extends const params: any[] = []; const whereSql = this.whereClauseGenerator(values, params, this.tableAlias); sql += whereSql + ';'; - console.log(sql); const result: QueryResult = await this.sqlite.executeQuery(sql, params); return result.rows.map(this.fromDB); }