Clarify logging message for next_hole_id

This commit is contained in:
norohind 2021-10-27 02:01:47 +03:00
parent 1404119cd9
commit 9f5d8fb447
Signed by: norohind
GPG Key ID: 01C3BECC26FB59E1

View File

@ -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]