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 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);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user