Skip to content

Commit

Permalink
Merge pull request #2555 from ermineJose/dialerr_stderr_fix
Browse files Browse the repository at this point in the history
feat: remove dial error print to stderr
  • Loading branch information
jacderida authored Dec 19, 2024
2 parents 86f7db7 + a137e82 commit ec107cc
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion autonomi/src/client/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,6 @@ impl Client {
for addr in peers {
if let Err(err) = network_clone.dial(addr.clone()).await {
error!("Failed to dial addr={addr} with err: {err:?}");
eprintln!("addr={addr} Failed to dial: {err:?}");
};
}
});
Expand Down

0 comments on commit ec107cc

Please sign in to comment.