Skip to content

Commit e726e24

Browse files
committed
Fmt
1 parent 6bd264e commit e726e24

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

databroker/src/broker.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1673,7 +1673,10 @@ impl AuthorizedAccess<'_, '_> {
16731673
let stream = BroadcastStream::new(receiver).filter_map(move |result| match result {
16741674
Ok(message) => Some(message),
16751675
Err(err) => {
1676-
warn!("Slow subscriber with capacity {} lagged and missed signal updates: {}", channel_capacity, err);
1676+
warn!(
1677+
"Slow subscriber with capacity {} lagged and missed signal updates: {}",
1678+
channel_capacity, err
1679+
);
16771680
None
16781681
}
16791682
});

0 commit comments

Comments
 (0)