Improve peer set logging hints

Delete hints about configuring peers.
Delete hint for typical "no ready peers" behaviour.
This commit is contained in:
teor 2020-12-02 15:09:59 +10:00 committed by Henry de Valence
parent cee0e86190
commit 34518525a5
1 changed files with 2 additions and 2 deletions

View File

@ -374,9 +374,9 @@ where
self.last_peer_log = Some(Instant::now());
if unready_services_len == 0 {
warn!("network request with no peer connections. Hint: check your network connection. Configure fast and reliable initial peers");
warn!("network request with no peer connections. Hint: check your network connection");
} else {
info!("network request with no ready peers: finding more peers, waiting for {} peers to answer requests. Hint: configure fast and reliable initial peers",
info!("network request with no ready peers: finding more peers, waiting for {} peers to answer requests",
unready_services_len);
}
}