mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 17:32:42 +08:00
improve some erro log information
This commit is contained in:
@@ -694,7 +694,7 @@ namespace OpenSim.Framework
|
||||
if (tmp.IsResolvedHost)
|
||||
m_gridUrl = tmp.URI;
|
||||
else
|
||||
m_log.Error(tmp.IsValidHost ? "Could not resolve GridUrl" : "GridUrl is a invalid host");
|
||||
m_log.Error(tmp.IsValidHost ? "Could not resolve GridUrl" : "GridUrl is a invalid host " + value ?? "");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -707,7 +707,7 @@ namespace OpenSim.Framework
|
||||
if (tmp.IsResolvedHost)
|
||||
m_SearchURL = tmp.URIwEndSlash;
|
||||
else
|
||||
m_log.Error(tmp.IsValidHost ? "Could not resolve SearchURL" : "SearchURL is a invalid host");
|
||||
m_log.Error(tmp.IsValidHost ? "Could not resolve SearchURL" : "SearchURL is a invalid host " + value??"");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -720,7 +720,7 @@ namespace OpenSim.Framework
|
||||
if (tmp.IsResolvedHost)
|
||||
m_DestinationGuideURL = tmp.URIwEndSlash;
|
||||
else
|
||||
m_log.Error(tmp.IsValidHost ? "Could not resolve DestinationGuideURL" : "DestinationGuideURL is a invalid host");
|
||||
m_log.Error(tmp.IsValidHost ? "Could not resolve DestinationGuideURL" : "DestinationGuideURL is a invalid host " + value ?? "");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -733,7 +733,7 @@ namespace OpenSim.Framework
|
||||
if (tmp.IsResolvedHost)
|
||||
m_economyURL = tmp.URIwEndSlash;
|
||||
else
|
||||
m_log.Error(tmp.IsValidHost ? "Could not resolve EconomyURL" : "EconomyURL is a invalid host");
|
||||
m_log.Error(tmp.IsValidHost ? "Could not resolve EconomyURL" : "EconomyURL is a invalid host " + value ?? "");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user