diff options
author | Melanie | 2010-01-13 03:59:35 +0000 |
---|---|---|
committer | Melanie | 2010-01-13 03:59:35 +0000 |
commit | 482dcb7e89a7e1834970f18f301f13af6d4851a6 (patch) | |
tree | 40a7b3ea6a35655d95c45e9e8779738d2fece2bf /OpenSim/Services/Connectors/Grid | |
parent | Change the error messages on region region registration. This changes URM (diff) | |
download | opensim-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/Services/Connectors/Grid')
-rw-r--r-- | OpenSim/Services/Connectors/Grid/GridServiceConnector.cs | 2 |
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")) |