From 6950a3d979762720dc23c8239749d7f74d458d21 Mon Sep 17 00:00:00 2001 From: croneter Date: Sun, 23 Dec 2018 10:20:28 +0100 Subject: [PATCH] Increase logging --- resources/lib/utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/lib/utils.py b/resources/lib/utils.py index 2fab25ca..762bd1eb 100644 --- a/resources/lib/utils.py +++ b/resources/lib/utils.py @@ -516,9 +516,10 @@ def reset(ask_user=True): app.APP.suspend_threads = True count = 15 while app.SYNC.db_scan: - LOG.debug("Sync is running, will retry: %s...", count) + LOG.info("Sync is running, will retry: %s...", count) count -= 1 if count == 0: + LOG.error('Could not stop PKC syncing process to reset the DB') # Could not stop the database from running. Please try again later. messageDialog(lang(29999), lang(39601)) app.APP.suspend_threads = False