aboutsummaryrefslogtreecommitdiff
path: root/qlite/src
diff options
context:
space:
mode:
authorfiaxh <git@lightrise.org>2019-03-15 20:56:19 +0100
committerfiaxh <git@lightrise.org>2019-03-15 22:01:34 +0100
commit6f6e4b97cba49469440fc0aefafb71623a3eabb9 (patch)
treee5a11627d5d34a9eac9ad50ee0822a05fe7b91bf /qlite/src
parenta49326979140750cc22cf483182274638568e43d (diff)
downloaddino-6f6e4b97cba49469440fc0aefafb71623a3eabb9.tar.gz
dino-6f6e4b97cba49469440fc0aefafb71623a3eabb9.zip
Use glib log functions
Diffstat (limited to 'qlite/src')
-rw-r--r--qlite/src/row.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/qlite/src/row.vala b/qlite/src/row.vala
index d3807f41..4671db20 100644
--- a/qlite/src/row.vala
+++ b/qlite/src/row.vala
@@ -108,7 +108,7 @@ public class RowIterator {
int r = stmt.step();
if (r == Sqlite.ROW) return true;
if (r == Sqlite.DONE) return false;
- print(@"SQLite error: $(db.errcode()) - $(db.errmsg())\n");
+ warning(@"SQLite error: $(db.errcode()) - $(db.errmsg())");
return false;
}