Remove debug prints

This commit is contained in:
Core447 2024-03-27 15:55:22 +01:00
parent fc8ee857ec
commit c17a5a7118
No known key found for this signature in database
GPG Key ID: 5B97C0BD62F98516
4 changed files with 0 additions and 5 deletions

View File

@ -68,7 +68,6 @@ class OBSActionBase(ActionBase):
self.reconnect_obs() self.reconnect_obs()
def reconnect_obs(self): def reconnect_obs(self):
print("reconnecing obs")
self.plugin_base.backend.connect_to( self.plugin_base.backend.connect_to(
host=self.plugin_base.get_settings().get("ip"), host=self.plugin_base.get_settings().get("ip"),
port=self.plugin_base.get_settings().get("port"), port=self.plugin_base.get_settings().get("port"),

View File

@ -1,6 +1,5 @@
from streamcontroller_plugin_tools.installation_helpers import create_venv from streamcontroller_plugin_tools.installation_helpers import create_venv
from os.path import join, abspath, dirname from os.path import join, abspath, dirname
print("installing")
toplevel = dirname(abspath(__file__)) toplevel = dirname(abspath(__file__))
create_venv(join(toplevel, "backend", ".venv"), join(toplevel, "backend", "requirements.txt")) create_venv(join(toplevel, "backend", ".venv"), join(toplevel, "backend", "requirements.txt"))

View File

@ -32,7 +32,6 @@ class ToggleRecord(OBSActionBase):
self.show_error() self.show_error()
return return
status = self.plugin_base.backend.get_record_status() status = self.plugin_base.backend.get_record_status()
print()
if status is None: if status is None:
self.current_state = -1 self.current_state = -1
self.show_error() self.show_error()
@ -64,7 +63,6 @@ class ToggleRecord(OBSActionBase):
image = "record_inactive.png" image = "record_inactive.png"
elif state == 1: elif state == 1:
image = "record_active.png" image = "record_active.png"
print("active")
elif state == 2: elif state == 2:
image = "record_resume.png" image = "record_resume.png"

View File

@ -58,5 +58,4 @@ class Backend(BackendBase):
def switch_to_scene(self, scene:str): def switch_to_scene(self, scene:str):
self.OBSController.switch_to_scene(scene) self.OBSController.switch_to_scene(scene)
print("init backend")
backend = Backend() backend = Backend()