From bcc97df2094832ee3940d45470ce9ca39290bba3 Mon Sep 17 00:00:00 2001 From: croneter Date: Fri, 2 Aug 2019 10:17:02 +0200 Subject: [PATCH] Less logging when comparing PKC versions --- resources/lib/utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/resources/lib/utils.py b/resources/lib/utils.py index be8aadcc..e19c2beb 100644 --- a/resources/lib/utils.py +++ b/resources/lib/utils.py @@ -639,7 +639,6 @@ def compare_version(current, minimum): Input strings: e.g. "1.2.3"; always with Major, Minor and Patch! """ - LOG.info("current DB: %s minimum DB: %s", current, minimum) try: curr_major, curr_minor, curr_patch = current.split(".") except ValueError: