Remove debug prints
This commit is contained in:
parent
fc8ee857ec
commit
c17a5a7118
|
@ -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"),
|
||||
|
|
|
@ -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"))
|
|
@ -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"
|
||||
|
||||
|
|
|
@ -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()
|
Loading…
Reference in New Issue