aboutsummaryrefslogtreecommitdiff
path: root/core/sql.c
diff options
context:
space:
mode:
authorPaul Oliver <contact@pauloliver.dev>2026-05-25 21:36:50 +0200
committerPaul Oliver <contact@pauloliver.dev>2026-05-25 21:38:20 +0200
commitbace2d7f20acc609d552a80bb018939d5e8afab8 (patch)
tree0525710979c3342a2ed74fc675c192cb9b0c7870 /core/sql.c
parent54342ed0cc61585d953183ec29309eb0db846b72 (diff)
Save file compression and data aggregation always enabled
Diffstat (limited to 'core/sql.c')
-rw-r--r--core/sql.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/sql.c b/core/sql.c
index fab6eeb..4cfa1b0 100644
--- a/core/sql.c
+++ b/core/sql.c
@@ -38,11 +38,11 @@ void sql_exec(int blob_cnt, const void **blobs, const int *blob_sizes, const cha
break;
}
- g_warn("SQLite database returned error %d with message:", sql_res);
- g_warn(sqlite3_errmsg(g_sim_db));
+ log_warn("SQLite database returned error %d with message:", sql_res);
+ log_warn(sqlite3_errmsg(g_sim_db));
if (sql_res == SQLITE_BUSY) {
- g_info("Will retry query...");
+ log_info("Will retry query...");
continue;
}