From 60d083b2384ac0ac492a9ef485caa2b002c2411d Mon Sep 17 00:00:00 2001 From: onyx-and-iris <75868496+onyx-and-iris@users.noreply.github.com> Date: Mon, 24 Oct 2022 22:48:41 +0100 Subject: [PATCH] change debug msg --- obsws_python/baseclient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/obsws_python/baseclient.py b/obsws_python/baseclient.py index 42e00b7..5a7e283 100644 --- a/obsws_python/baseclient.py +++ b/obsws_python/baseclient.py @@ -80,7 +80,7 @@ class ObsClient: def req(self, req_type, req_data=None): id = randint(1, 1000) - self.logger.debug(f"Sending request with response id {id}") + self.logger.debug(f"Sending request with id {id}") payload = { "op": 6, "d": {"requestType": req_type, "requestId": id},