From f9e2d2c6dda636f788f4b6be53d3455df5feffb5 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Wed, 26 Jun 2024 09:12:00 -0500 Subject: [PATCH] fixing obs debug info --- src/rust/obs.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/rust/obs.rs b/src/rust/obs.rs index 69b28d8..4d63829 100644 --- a/src/rust/obs.rs +++ b/src/rust/obs.rs @@ -20,8 +20,9 @@ pub struct Obs { impl fmt::Debug for Obs { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { f.debug_struct("Client") - .field("host", &"localhost") - .field("port", &4455) + .field("scenes", &self.scenes) + .field("client", &self.client.is_some()) + .field("current_program_scene", &self.current_program_scene) .finish() } }