From: Philippe Proulx Date: Tue, 27 Oct 2015 23:06:56 +0000 (-0400) Subject: Fix: remove debugging print() call from Python agent X-Git-Url: http://git.efficios.com/?p=deliverable%2Flttng-ust.git;a=commitdiff_plain;h=4ed2398507da76ed80dd09b996242066fa34e2a0 Fix: remove debugging print() call from Python agent Signed-off-by: Philippe Proulx Signed-off-by: Mathieu Desnoyers --- 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(