From 9cda837b9fe17fc26b68e40ad5f841591db2dd9c Mon Sep 17 00:00:00 2001 From: Jozef Urbanovsky Date: Mon, 5 Feb 2024 09:14:20 +0100 Subject: [PATCH] Tests.XDPBench: add logging of xdp-bench cmd --- lnst/Tests/XDPBench.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lnst/Tests/XDPBench.py b/lnst/Tests/XDPBench.py index eefcac06..e94054d6 100644 --- a/lnst/Tests/XDPBench.py +++ b/lnst/Tests/XDPBench.py @@ -126,8 +126,8 @@ def __init__(self, **kwargs): self._res_data = [] def run(self): - logging.debug("Starting xdp-bench") command = self._prepare_command() + logging.debug(f"Starting xdp-bench: `{command}`") bench = Popen(command, stdout=PIPE) output_parser = XDPBenchOutputParser(bench)