fixing obs debug info

This commit is contained in:
Chris Cochrun 2024-06-26 09:12:00 -05:00
parent cbf5fe3d9d
commit f9e2d2c6dd

View file

@ -20,8 +20,9 @@ pub struct Obs {
impl fmt::Debug for Obs { impl fmt::Debug for Obs {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Client") f.debug_struct("Client")
.field("host", &"localhost") .field("scenes", &self.scenes)
.field("port", &4455) .field("client", &self.client.is_some())
.field("current_program_scene", &self.current_program_scene)
.finish() .finish()
} }
} }