From 4d90fd46a8c3d52e79ee09df1ce8adb552e58b17 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Tue, 19 Mar 2019 21:14:17 +0100 Subject: [PATCH] Disable printing raw (undecoded) packet --- p4app/controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p4app/controller.py b/p4app/controller.py index 8e536ef..5ac524a 100644 --- a/p4app/controller.py +++ b/p4app/controller.py @@ -373,7 +373,7 @@ class L2Controller(object): def recv_msg_cpu(self, pkg): packet = Ether(str(pkg)) - self.debug_print_pkg(pkg) + # self.debug_print_pkg(pkg) if packet.type == 0x0800: pass