diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Services/Connectors/Friends/FriendsSimConnector.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Services/Connectors/Friends/FriendsSimConnector.cs b/OpenSim/Services/Connectors/Friends/FriendsSimConnector.cs index 4ffa68c..d0a20fc 100644 --- a/OpenSim/Services/Connectors/Friends/FriendsSimConnector.cs +++ b/OpenSim/Services/Connectors/Friends/FriendsSimConnector.cs | |||
@@ -134,11 +134,11 @@ namespace OpenSim.Services.Connectors.Friends | |||
134 | private bool Call(GridRegion region, Dictionary<string, object> sendData) | 134 | private bool Call(GridRegion region, Dictionary<string, object> sendData) |
135 | { | 135 | { |
136 | string reqString = ServerUtils.BuildQueryString(sendData); | 136 | string reqString = ServerUtils.BuildQueryString(sendData); |
137 | //m_log.DebugFormat("[FRIENDS CONNECTOR]: queryString = {0}", reqString); | 137 | //m_log.DebugFormat("[FRIENDS SIM CONNECTOR]: queryString = {0}", reqString); |
138 | if (region == null) | 138 | if (region == null) |
139 | return false; | 139 | return false; |
140 | 140 | ||
141 | m_log.DebugFormat("[FRIENDS CONNECTOR]: region: {0}", region.ExternalHostName + ":" + region.HttpPort); | 141 | m_log.DebugFormat("[FRIENDS SIM CONNECTOR]: region: {0}", region.ExternalHostName + ":" + region.HttpPort); |
142 | try | 142 | try |
143 | { | 143 | { |
144 | string url = "http://" + region.ExternalHostName + ":" + region.HttpPort; | 144 | string url = "http://" + region.ExternalHostName + ":" + region.HttpPort; |
@@ -157,15 +157,15 @@ namespace OpenSim.Services.Connectors.Friends | |||
157 | return false; | 157 | return false; |
158 | } | 158 | } |
159 | else | 159 | else |
160 | m_log.DebugFormat("[FRIENDS CONNECTOR]: reply data does not contain result field"); | 160 | m_log.DebugFormat("[FRIENDS SIM CONNECTOR]: reply data does not contain result field"); |
161 | 161 | ||
162 | } | 162 | } |
163 | else | 163 | else |
164 | m_log.DebugFormat("[FRIENDS CONNECTOR]: received empty reply"); | 164 | m_log.DebugFormat("[FRIENDS SIM CONNECTOR]: received empty reply"); |
165 | } | 165 | } |
166 | catch (Exception e) | 166 | catch (Exception e) |
167 | { | 167 | { |
168 | m_log.DebugFormat("[FRIENDS CONNECTOR]: Exception when contacting remote sim: {0}", e.ToString()); | 168 | m_log.DebugFormat("[FRIENDS SIM CONNECTOR]: Exception when contacting remote sim: {0}", e.ToString()); |
169 | } | 169 | } |
170 | 170 | ||
171 | return false; | 171 | return false; |