fix: removes console.log

This commit is contained in:
2026-01-18 15:13:05 -03:00
parent 3467a574c1
commit 0a56fc6be0

View File

@@ -21,7 +21,6 @@ export abstract class ComposedDAO<T extends Object, K extends Object, U> extends
const params: any[] = []; const params: any[] = [];
const whereSql = this.whereClauseGenerator(values, params, this.tableAlias); const whereSql = this.whereClauseGenerator(values, params, this.tableAlias);
sql += whereSql + ';'; sql += whereSql + ';';
console.log(sql);
const result: QueryResult<U> = await this.sqlite.executeQuery(sql, params); const result: QueryResult<U> = await this.sqlite.executeQuery(sql, params);
return result.rows.map(this.fromDB); return result.rows.map(this.fromDB);
} }