Reduce logspam from node with no peers

Signed-off-by: Wendi Yu <wendi.yu@yahoo.ca>
pull/380/head
Wendi Yu 4 years ago committed by Brad Fitzpatrick
parent cd01bcc395
commit 3663797815

@ -567,7 +567,9 @@ func (b *LocalBackend) parseWgStatus(s *wgengine.Status) EngineStatus {
rx += p.RxBytes
tx += p.TxBytes
}
b.logf("v%v peers: %v", version.LONG, strings.Join(ss, " "))
if len(ss) != 0 {
b.logf("v%v peers: %v", version.LONG, strings.Join(ss, " "))
}
return EngineStatus{
RBytes: rx,
WBytes: tx,

Loading…
Cancel
Save