From 8efa4c06de98ca275d60e498b5203284e7dafeda Mon Sep 17 00:00:00 2001 From: Florian Bezannier Date: Sat, 1 May 2021 10:58:16 +0200 Subject: [PATCH] fix log msg --- web/db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/db.py b/web/db.py index 9b27d20..6654a23 100644 --- a/web/db.py +++ b/web/db.py @@ -168,7 +168,7 @@ class Database: "FROM position WHERE altitude IS NULL LIMIT ?;", (max_pos_by_req,)).fetchall() nb_res = len(res) if nb_res > 0: - logger.debug("add altitude for %s positions point", len(nb_null)) + logger.debug("add altitude for %s positions point", nb_null) nb_null -= nb_res locations_str = "" for line in res: