Fix: remove debugging print() call from Python agent
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Tue, 27 Oct 2015 23:06:56 +0000 (19:06 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Wed, 28 Oct 2015 19:13:42 +0000 (15:13 -0400)
Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
liblttng-ust-python-agent/lttngust/cmd.py

index 382de6858a586a4c0b0b4469916ac206419ab564..b6d8446bb1d5834fa30a10369561eb1b914eeb70 100644 (file)
@@ -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(
This page took 0.025485 seconds and 5 git commands to generate.