From c17a5a711887d37a78009847e6f069d9d096c956 Mon Sep 17 00:00:00 2001 From: Core447 Date: Wed, 27 Mar 2024 15:55:22 +0100 Subject: [PATCH] Remove debug prints --- OBSActionBase.py | 1 - __install__.py | 1 - actions/ToggleRecord/ToggleRecord.py | 2 -- backend/backend.py | 1 - 4 files changed, 5 deletions(-) diff --git a/OBSActionBase.py b/OBSActionBase.py index b1f9193..e3aafb6 100644 --- a/OBSActionBase.py +++ b/OBSActionBase.py @@ -68,7 +68,6 @@ class OBSActionBase(ActionBase): self.reconnect_obs() def reconnect_obs(self): - print("reconnecing obs") self.plugin_base.backend.connect_to( host=self.plugin_base.get_settings().get("ip"), port=self.plugin_base.get_settings().get("port"), diff --git a/__install__.py b/__install__.py index 35bd372..3b2e9f0 100644 --- a/__install__.py +++ b/__install__.py @@ -1,6 +1,5 @@ from streamcontroller_plugin_tools.installation_helpers import create_venv from os.path import join, abspath, dirname -print("installing") toplevel = dirname(abspath(__file__)) create_venv(join(toplevel, "backend", ".venv"), join(toplevel, "backend", "requirements.txt")) \ No newline at end of file diff --git a/actions/ToggleRecord/ToggleRecord.py b/actions/ToggleRecord/ToggleRecord.py index 420d935..a7851fe 100644 --- a/actions/ToggleRecord/ToggleRecord.py +++ b/actions/ToggleRecord/ToggleRecord.py @@ -32,7 +32,6 @@ class ToggleRecord(OBSActionBase): self.show_error() return status = self.plugin_base.backend.get_record_status() - print() if status is None: self.current_state = -1 self.show_error() @@ -64,7 +63,6 @@ class ToggleRecord(OBSActionBase): image = "record_inactive.png" elif state == 1: image = "record_active.png" - print("active") elif state == 2: image = "record_resume.png" diff --git a/backend/backend.py b/backend/backend.py index 8507f1b..682b581 100644 --- a/backend/backend.py +++ b/backend/backend.py @@ -58,5 +58,4 @@ class Backend(BackendBase): def switch_to_scene(self, scene:str): self.OBSController.switch_to_scene(scene) -print("init backend") backend = Backend() \ No newline at end of file