Less logging when comparing PKC versions

This commit is contained in:
croneter 2019-08-02 10:17:02 +02:00
parent 92a7fa7c7a
commit bcc97df209

View file

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