From 4ed2398507da76ed80dd09b996242066fa34e2a0 Mon Sep 17 00:00:00 2001 From: Philippe Proulx Date: Tue, 27 Oct 2015 19:06:56 -0400 Subject: [PATCH] Fix: remove debugging print() call from Python agent Signed-off-by: Philippe Proulx Signed-off-by: Mathieu Desnoyers --- liblttng-ust-python-agent/lttngust/cmd.py | 1 - 1 file changed, 1 deletion(-) diff --git a/liblttng-ust-python-agent/lttngust/cmd.py b/liblttng-ust-python-agent/lttngust/cmd.py index 382de685..b6d8446b 100644 --- a/liblttng-ust-python-agent/lttngust/cmd.py +++ b/liblttng-ust-python-agent/lttngust/cmd.py @@ -92,7 +92,6 @@ class _ServerCmdEnable(_ServerCmd): filter_exp_start = name_end + cls._filter_exp_len_struct.size filter_exp_len, = cls._filter_exp_len_struct.unpack_from( data[name_end:filter_exp_start]) - print(filter_exp_len) filter_exp_end = filter_exp_start + filter_exp_len filter_exp = data[filter_exp_start:filter_exp_end].rstrip( -- 2.34.1