From 71d84bb6f1f493ce589499a6de149cfa3222e006 Mon Sep 17 00:00:00 2001 From: Vratko Polak Date: Tue, 28 Jun 2022 17:33:55 +0200 Subject: [PATCH] feat(telemetry): print executed command in vppctl The vpp bundle does that, so this will make the outputs more similar. Change-Id: Iadad9b683d90b7bdd672ed3f51bce9f57f652eaa Signed-off-by: Vratko Polak --- resources/tools/telemetry/bundle_vppctl.py | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/tools/telemetry/bundle_vppctl.py b/resources/tools/telemetry/bundle_vppctl.py index b417ab07ed..5334237496 100644 --- a/resources/tools/telemetry/bundle_vppctl.py +++ b/resources/tools/telemetry/bundle_vppctl.py @@ -201,6 +201,7 @@ class BundleVppctl: """ for command in self.cli_command_list: try: + getLogger(__name__).info(command) replies = subprocess.getoutput(command) except (AssertionError, AttributeError): getLogger("console_stderr").error( -- 2.16.6