Fix a bad error message

mysql-performance
Melanie 2010-01-13 03:59:35 +00:00
parent e3a04fcb7b
commit 482dcb7e89
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ namespace OpenSim.Services.Connectors
}
else if (replyData.ContainsKey("Result")&& (replyData["Result"].ToString().ToLower() == "failure"))
{
m_log.DebugFormat("[GRID CONNECTOR]: unexpected result {0}", replyData["Result"].ToString());
m_log.DebugFormat("[GRID CONNECTOR]: Registration failed: {0}", replyData["Message"].ToString());
return replyData["Message"].ToString();
}
else if (!replyData.ContainsKey("Result"))