From 6d75b4502eab8c8ade17cb5f483fcf36952b5956 Mon Sep 17 00:00:00 2001 From: Koushik Dutta Date: Mon, 14 Feb 2022 20:14:30 -0800 Subject: [PATCH] tensorflow-lite: reduce log spam --- plugins/tensorflow-lite/src/detect/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugins/tensorflow-lite/src/detect/__init__.py b/plugins/tensorflow-lite/src/detect/__init__.py index f05ab7a76..1627c62fa 100644 --- a/plugins/tensorflow-lite/src/detect/__init__.py +++ b/plugins/tensorflow-lite/src/detect/__init__.py @@ -57,7 +57,6 @@ class PipelineValve: def open(self): with self.mutex: - print("open", self.name) if self.probe != None: self.pad.remove_probe(self.probe) self.probe = None @@ -67,7 +66,6 @@ class PipelineValve: self.pad.remove_probe(self.probe) self.probe = None def probe(pad, info): - print("block", self.name) return Gst.PadProbeReturn.OK self.probe = self.pad.add_probe(Gst.PadProbeType.BLOCK | Gst.PadProbeType.BUFFER | Gst.PadProbeType.BUFFER_LIST, probe)