fix error messages

This commit is contained in:
Matthew R. Kasun
2022-02-04 18:24:46 -05:00
parent 6f0950792f
commit 44ee0e2e8a

View File

@@ -604,7 +604,7 @@ func pingServer(cfg *config.ClientConfig) error {
pinger.Timeout = 2 * time.Second pinger.Timeout = 2 * time.Second
pinger.Run() pinger.Run()
stats := pinger.Statistics() stats := pinger.Statistics()
if stats.PacketLoss != 100 { if stats.PacketLoss == 100 {
ncutils.PrintLog(fmt.Sprintf("lost packets when pinging server: packets sent:%d packets recieved: %d", stats.PacketsSent, stats.PacketsRecv), 1) ncutils.PrintLog(fmt.Sprintf("lost packets when pinging server: packets sent:%d packets recieved: %d", stats.PacketsSent, stats.PacketsRecv), 1)
return errors.New("ping error") return errors.New("ping error")
} }