Removed debugging messages

This commit is contained in:
thomashii@dukefirehawk.com 2022-08-31 22:48:27 +08:00
parent 272363052b
commit 71b50452ec
3 changed files with 7 additions and 3 deletions

View file

@ -1,5 +1,9 @@
# Change Log
## 7.0.1
* Reduced debugging verbosity
## 7.0.0
* Require Dart >= 2.17

View file

@ -57,8 +57,8 @@ abstract class QueryBase<T> {
Future<List<T>> get(QueryExecutor executor) async {
var sql = compile({});
print('sql = $sql');
print('substitutionValues = $substitutionValues');
//print('sql = $sql');
//print('substitutionValues = $substitutionValues');
return executor.query(tableName, sql, substitutionValues).then((it) {
return deserializeList(it);

View file

@ -1,5 +1,5 @@
name: angel3_orm
version: 7.0.0
version: 7.0.1
description: Runtime support for Angel3 ORM. Includes base classes for queries.
homepage: https://angel3-framework.web.app/
repository: https://github.com/dukefirehawk/angel/tree/master/packages/orm/angel_orm