Merge pull request #79 from dukefirehawk/feature/perf-2

Removed debugging messages
This commit is contained in:
Thomas Hii 2022-08-31 22:56:04 +08:00 committed by GitHub
commit 41167e01bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 3 deletions

View file

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

View file

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

View file

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