Skip to content

Commit ac8c26d

Browse files
committed
fix: metrics printing
1 parent 72f636f commit ac8c26d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

host/src/channel_manager.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -920,7 +920,7 @@ impl defmt::Format for ChannelStorage {
920920
self.refcount,
921921
);
922922
#[cfg(feature = "channel-metrics")]
923-
defmt::write!(", {}", self.metrics);
923+
defmt::write!(f, ", {}", self.metrics);
924924
}
925925
}
926926

host/src/connection_manager.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -892,7 +892,7 @@ impl defmt::Format for ConnectionStorage {
892892
);
893893

894894
#[cfg(feature = "connection-metrics")]
895-
defmt::write!(", {}", self.metrics);
895+
defmt::write!(f, ", {}", self.metrics);
896896
}
897897
}
898898

0 commit comments

Comments
 (0)