From 608a411d97cee49ed357b4102672dc50e7213c5e Mon Sep 17 00:00:00 2001 From: shortcutme Date: Wed, 16 Oct 2019 15:43:28 +0200 Subject: [PATCH] Db table rebuild as debug message --- src/Db/DbCursor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Db/DbCursor.py b/src/Db/DbCursor.py index 2c41c2c1..91eaa313 100644 --- a/src/Db/DbCursor.py +++ b/src/Db/DbCursor.py @@ -163,7 +163,7 @@ class DbCursor: def needTable(self, table, cols, indexes=None, version=1): current_version = self.db.getTableVersion(table) if int(current_version) < int(version): # Table need update or not extis - self.db.log.info("Table %s outdated...version: %s need: %s, rebuilding..." % (table, current_version, version)) + self.db.log.debug("Table %s outdated...version: %s need: %s, rebuilding..." % (table, current_version, version)) self.createTable(table, cols) if indexes: self.createIndexes(table, indexes)