Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
dbanda committed Jun 27, 2023
1 parent a185dcc commit 4c95e5c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions rust_snuba/rust_arroyo/src/utils/metrics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ impl MetricsClientTrait for MetricsClient {
match result {
Ok(_) => {}
Err(_err) => {
println!("Failed to send metric {}: {}", key, _err)
println!("Failed to send metric {key}: {_err}")
}
}
}
Expand All @@ -87,7 +87,7 @@ impl MetricsClientTrait for MetricsClient {
match result {
Ok(_) => {}
Err(_err) => {
println!("Failed to send metric {}: {}", key, _err)
println!("Failed to send metric {key}: {_err}")
}
}
}
Expand All @@ -112,7 +112,7 @@ impl MetricsClientTrait for MetricsClient {
match result {
Ok(_) => {}
Err(_err) => {
println!("Failed to send metric {}: {}", key, _err)
println!("Failed to send metric {key}: {_err}")
}
}
}
Expand All @@ -136,7 +136,7 @@ impl MetricsClient {
match result {
Ok(_) => {}
Err(_err) => {
println!("Failed to send metric with tags: {}", _err)
println!("Failed to send metric with tags: {_err}")
}
}
}
Expand Down

0 comments on commit 4c95e5c

Please sign in to comment.