From 3494f8a7d479264b176bc170f5fdce59a8777a68 Mon Sep 17 00:00:00 2001 From: Jordan Ruthe Date: Thu, 8 Apr 2021 22:27:35 -0400 Subject: [PATCH] screen: remove un-necessary logging line --- screen.py | 1 - 1 file changed, 1 deletion(-) diff --git a/screen.py b/screen.py index 1fda9e0d..07ad33ab 100644 --- a/screen.py +++ b/screen.py @@ -301,7 +301,6 @@ class KlipperScreen(Gtk.Window): self.show_all() if hasattr(self.panels[panel_name],"process_update"): - logging.info("Debug: %s" % self.printer.get_updates()) self.panels[panel_name].process_update("notify_status_update", self.printer.get_updates()) if hasattr(self.panels[panel_name],"activate"): self.panels[panel_name].activate()