aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Connectors/Friends/FriendsSimConnector.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-11-15 21:51:45 +0000
committerJustin Clark-Casey (justincc)2011-11-15 21:51:45 +0000
commite11b9dddb6e792099eabf6b5fe630db27510c6c8 (patch)
treecfcbe327712b92327b7e03995bf8ad2231613131 /OpenSim/Services/Connectors/Friends/FriendsSimConnector.cs
parentAdd number of milliseconds since last update to "show threads" (diff)
downloadopensim-SC_OLD-e11b9dddb6e792099eabf6b5fe630db27510c6c8.zip
opensim-SC_OLD-e11b9dddb6e792099eabf6b5fe630db27510c6c8.tar.gz
opensim-SC_OLD-e11b9dddb6e792099eabf6b5fe630db27510c6c8.tar.bz2
opensim-SC_OLD-e11b9dddb6e792099eabf6b5fe630db27510c6c8.tar.xz
distinguish between FriendsSimConnector and FriendsServiceConnector in log
Diffstat (limited to 'OpenSim/Services/Connectors/Friends/FriendsSimConnector.cs')
-rw-r--r--OpenSim/Services/Connectors/Friends/FriendsSimConnector.cs10
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;