rtt -> RTT

This commit is contained in:
Frank Denis 2019-06-03 17:32:54 +02:00
parent 36e3691ccc
commit 313ca48cad
1 changed files with 1 additions and 1 deletions

View File

@ -223,7 +223,7 @@ func (serversInfo *ServersInfo) getOne() *ServerInfo {
candidate = rand.Intn(Min(serversCount, 2)) candidate = rand.Intn(Min(serversCount, 2))
} }
serverInfo := serversInfo.inner[candidate] serverInfo := serversInfo.inner[candidate]
dlog.Debugf("Using candidate [%s] rtt: %d", (*serverInfo).Name, int((*serverInfo).rtt.Value())) dlog.Debugf("Using candidate [%s] RTT: %d", (*serverInfo).Name, int((*serverInfo).rtt.Value()))
return serverInfo return serverInfo
} }