Merge pull request #952 from croneter/less-logging

Less logging when comparing PKC versions
This commit is contained in:
croneter 2019-08-02 10:51:10 +02:00 committed by GitHub
commit b5bd13f7bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -651,7 +651,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: