From 59364500bc42014b9dd7f6edfec0ec05322abcc4 Mon Sep 17 00:00:00 2001 From: Patrik Lundin Date: Thu, 30 Jun 2016 18:51:35 +0200 Subject: [PATCH] Improve debug logging some more. --- packaging/os/openbsd_pkg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/os/openbsd_pkg.py b/packaging/os/openbsd_pkg.py index de37a769b05..c5beab1d8aa 100644 --- a/packaging/os/openbsd_pkg.py +++ b/packaging/os/openbsd_pkg.py @@ -229,7 +229,7 @@ def package_latest(name, installed_state, pkg_spec, module): module.debug("package_latest(): checking for pre-upgrade package name: %s" % installed_name) match = re.search("\W%s->.+: ok\W" % installed_name, stdout) if match: - module.debug("package_latest(): package name match: %s" % installed_name) + module.debug("package_latest(): pre-upgrade package name match: %s" % installed_name) if module.check_mode: module.exit_json(changed=True)