fixing obs debug info
This commit is contained in:
parent
cbf5fe3d9d
commit
f9e2d2c6dd
1 changed files with 3 additions and 2 deletions
|
@ -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()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue