Skip to content

Commit

Permalink
add another log for mentioning results output
Browse files Browse the repository at this point in the history
  • Loading branch information
BrPrS committed Jul 18, 2024
1 parent e6b4598 commit 8e5e219
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,16 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
if *size > 0 {
log::info!("*********************");
log::info!("Best DNS server is {}", best_dns);
log::info!("*********************");
log::info!("*********************\n");
} else {
log::info!("*********************");
log::info!("Network is not reachable");
log::info!("*********************");
log::info!("*********************\n");
}
}
write_result(results);

log::info!("results saved in output directory");
Ok(())
}

Expand Down

0 comments on commit 8e5e219

Please sign in to comment.