fix: removes console.log
This commit is contained in:
@@ -21,7 +21,6 @@ export abstract class ComposedDAO<T extends Object, K extends Object, U> extends
|
||||
const params: any[] = [];
|
||||
const whereSql = this.whereClauseGenerator(values, params, this.tableAlias);
|
||||
sql += whereSql + ';';
|
||||
console.log(sql);
|
||||
const result: QueryResult<U> = await this.sqlite.executeQuery(sql, params);
|
||||
return result.rows.map(this.fromDB);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user