Skip to content

Commit

Permalink
Fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
detro committed Sep 24, 2023
1 parent b28cba2 commit ac42894
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/partition_offsets/register.rs
Original file line number Diff line number Diff line change
Expand Up @@ -273,11 +273,13 @@ impl Awaitable for PartitionOffsetsRegister {
let (min, max, avg, count) = self.get_usage().await;
let is_ready = avg >= self.ready_at;

info!("
info!(
"
Tracked:
* Partitions: {count}
* Offsets/Partition: min={min:3.3}% / max={max:3.3}% / avg={avg:3.3}%
* Ready: {is_ready}");
* Ready: {is_ready}"
);

is_ready
}
Expand Down

0 comments on commit ac42894

Please sign in to comment.