We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0238f72 commit 558fea8Copy full SHA for 558fea8
crates/batcher/src/lib.rs
@@ -1508,7 +1508,10 @@ impl Batcher {
1508
.update_queue_metrics(queue_len as i64, queue_size_bytes as i64);
1509
}
1510
Err(e) => {
1511
- error!("Failed to calculate batch size for queue metrics update: {:?}", e);
+ error!(
1512
+ "Failed to calculate batch size for queue metrics update: {:?}",
1513
+ e
1514
+ );
1515
// Still update queue length metric, set size to 0 due to calculation error
1516
self.metrics.update_queue_metrics(queue_len as i64, 0);
1517
0 commit comments