Suppress misleading message when logging in locally

The gatekeeper and travel info address will not actually be set there,
stop OpenSim from showing a blank address. It's confusing.
melanie
Melanie Thielker 2017-01-03 18:31:17 +00:00
parent 504a69906b
commit 995242b351
1 changed files with 6 additions and 2 deletions

View File

@ -301,8 +301,12 @@ namespace OpenSim.Services.HypergridService
// Everything is ok
// Update the perceived IP Address of our grid
m_log.DebugFormat("[USER AGENT SERVICE]: Gatekeeper sees me as {0}", myExternalIP);
if (!fromLogin)
{
// Update the perceived IP Address of our grid
m_log.DebugFormat("[USER AGENT SERVICE]: Gatekeeper sees me as {0}", myExternalIP);
}
travel.MyIpAddress = myExternalIP;
StoreTravelInfo(travel);