aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorMelanie2010-01-13 03:59:35 +0000
committerMelanie2010-01-13 03:59:35 +0000
commit482dcb7e89a7e1834970f18f301f13af6d4851a6 (patch)
tree40a7b3ea6a35655d95c45e9e8779738d2fece2bf /OpenSim
parentChange the error messages on region region registration. This changes URM (diff)
downloadopensim-SC_OLD-482dcb7e89a7e1834970f18f301f13af6d4851a6.zip
opensim-SC_OLD-482dcb7e89a7e1834970f18f301f13af6d4851a6.tar.gz
opensim-SC_OLD-482dcb7e89a7e1834970f18f301f13af6d4851a6.tar.bz2
opensim-SC_OLD-482dcb7e89a7e1834970f18f301f13af6d4851a6.tar.xz
Fix a bad error message
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Services/Connectors/Grid/GridServiceConnector.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Services/Connectors/Grid/GridServiceConnector.cs b/OpenSim/Services/Connectors/Grid/GridServiceConnector.cs
index 1ba7344..04c7c53 100644
--- a/OpenSim/Services/Connectors/Grid/GridServiceConnector.cs
+++ b/OpenSim/Services/Connectors/Grid/GridServiceConnector.cs
@@ -115,7 +115,7 @@ namespace OpenSim.Services.Connectors
115 } 115 }
116 else if (replyData.ContainsKey("Result")&& (replyData["Result"].ToString().ToLower() == "failure")) 116 else if (replyData.ContainsKey("Result")&& (replyData["Result"].ToString().ToLower() == "failure"))
117 { 117 {
118 m_log.DebugFormat("[GRID CONNECTOR]: unexpected result {0}", replyData["Result"].ToString()); 118 m_log.DebugFormat("[GRID CONNECTOR]: Registration failed: {0}", replyData["Message"].ToString());
119 return replyData["Message"].ToString(); 119 return replyData["Message"].ToString();
120 } 120 }
121 else if (!replyData.ContainsKey("Result")) 121 else if (!replyData.ContainsKey("Result"))