Skip to content

Commit

Permalink
Removed excessive debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
xnuter committed Mar 21, 2022
1 parent d84c135 commit 5a2df16
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "perf-gauge"
version = "0.1.14"
version = "0.1.15"
authors = ["Eugene Retunsky"]
license = "MIT OR Apache-2.0"
edition = "2018"
Expand Down
2 changes: 0 additions & 2 deletions src/bench_run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,10 +142,8 @@ impl BenchRun {
let result = timeout(timeout_value, f).await;

if let Ok(r) = result {
println!("No timeout: {:?}", timeout_value);
Ok(r)
} else {
println!("Timeout: {:?}", timeout_value);
Err(())
}
} else {
Expand Down

0 comments on commit 5a2df16

Please sign in to comment.