From 9f5d8fb447cb47890e376470faf95fd85570c703 Mon Sep 17 00:00:00 2001 From: norohind <60548839+norohind@users.noreply.github.com> Date: Wed, 27 Oct 2021 02:01:47 +0300 Subject: [PATCH] Clarify logging message for next_hole_id --- utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.py b/utils.py index 11ed0dc..5e1b4e2 100644 --- a/utils.py +++ b/utils.py @@ -323,5 +323,5 @@ def get_next_hole_id_for_discover(db_conn: sqlite3.Connection) -> int: return 1 else: - logger.debug(f'last know id from DB: {sql_req[0]}') + logger.debug(f'Next unknown id from DB: {sql_req[0]}') return sql_req[0]