Skip to content
Snippets Groups Projects
Commit 74b52f93 authored by Oliver Tale-Yazdi's avatar Oliver Tale-Yazdi Committed by GitHub
Browse files

Remove duplicate units (#12634)


Signed-off-by: default avatarOliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

Signed-off-by: default avatarOliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
parent 617fa6c0
Branches
No related merge requests found
......@@ -131,14 +131,14 @@ pub fn print_sysinfo(sysinfo: &sc_telemetry::SysInfo) {
/// Prints out the results of the hardware benchmarks in the logs.
pub fn print_hwbench(hwbench: &HwBench) {
log::info!("🏁 CPU score: {}MB/s", hwbench.cpu_hashrate_score);
log::info!("🏁 Memory score: {}MB/s", hwbench.memory_memcpy_score);
log::info!("🏁 CPU score: {}", hwbench.cpu_hashrate_score);
log::info!("🏁 Memory score: {}", hwbench.memory_memcpy_score);
if let Some(score) = hwbench.disk_sequential_write_score {
log::info!("🏁 Disk score (seq. writes): {}MB/s", score);
log::info!("🏁 Disk score (seq. writes): {}", score);
}
if let Some(score) = hwbench.disk_random_write_score {
log::info!("🏁 Disk score (rand. writes): {}MB/s", score);
log::info!("🏁 Disk score (rand. writes): {}", score);
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment