Improve peer set logging hints
Delete hints about configuring peers. Delete hint for typical "no ready peers" behaviour.
This commit is contained in:
parent
cee0e86190
commit
34518525a5
|
@ -374,9 +374,9 @@ where
|
||||||
|
|
||||||
self.last_peer_log = Some(Instant::now());
|
self.last_peer_log = Some(Instant::now());
|
||||||
if unready_services_len == 0 {
|
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 {
|
} 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);
|
unready_services_len);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue