From 8fafec4e98f170f136d5aca263c9b47b9a0c51a9 Mon Sep 17 00:00:00 2001 From: Sven Velt Date: Thu, 24 Nov 2016 18:50:30 +0100 Subject: [PATCH] check_xbps: add some verbose output --- check_xbps.py | 1 + 1 file changed, 1 insertion(+) diff --git a/check_xbps.py b/check_xbps.py index 5b504ed..c3d3679 100755 --- a/check_xbps.py +++ b/check_xbps.py @@ -105,6 +105,7 @@ def run_command(cmdline): ############################################################################## if plugin.options.sync_repo_index: + plugin.verbose(1, '-S/--sync_repo_index given') cmdline = [plugin.options.xbps_install, '-S',] (sout, serr, rc) = run_command(cmdline) sout and plugin.verbose(3, sout, prefix='stdout: ')