From 6d24172c51e4757c77857b8299cf9cde0bc5c7d9 Mon Sep 17 00:00:00 2001 From: server Date: Tue, 14 Apr 2026 16:37:34 +0200 Subject: [PATCH] db: treat empty table postfix as expected default --- src/db/Main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/db/Main.cpp b/src/db/Main.cpp index b1c9479..34c33f9 100644 --- a/src/db/Main.cpp +++ b/src/db/Main.cpp @@ -346,7 +346,7 @@ int Start() if (!CConfig::instance().GetValue("TABLE_POSTFIX", szBuf, 256)) { - sys_err("TABLE_POSTFIX not configured use default"); + sys_log(0, "CONFIG: TABLE_POSTFIX not configured, using default table names"); szBuf[0] = '\0'; }