aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Connectors
diff options
context:
space:
mode:
authorMelanie2010-08-19 11:47:50 +0100
committerMelanie2010-08-19 11:47:50 +0100
commit77705145a01b99ad373d72f0d03a4b33fc233038 (patch)
treeeef44f3de6cd3dfc274997896aa134dacf1ef3d5 /OpenSim/Services/Connectors
parentRevert "Adding Group managment to the offline system" (diff)
parentMerge branch 'master' of melanie@opensimulator.org:/var/git/opensim (diff)
downloadopensim-SC_OLD-77705145a01b99ad373d72f0d03a4b33fc233038.zip
opensim-SC_OLD-77705145a01b99ad373d72f0d03a4b33fc233038.tar.gz
opensim-SC_OLD-77705145a01b99ad373d72f0d03a4b33fc233038.tar.bz2
opensim-SC_OLD-77705145a01b99ad373d72f0d03a4b33fc233038.tar.xz
Merge branch 'master' into careminster-presence-refactor
Diffstat (limited to 'OpenSim/Services/Connectors')
-rw-r--r--OpenSim/Services/Connectors/Land/LandServiceConnector.cs16
1 files changed, 10 insertions, 6 deletions
diff --git a/OpenSim/Services/Connectors/Land/LandServiceConnector.cs b/OpenSim/Services/Connectors/Land/LandServiceConnector.cs
index c439dc5..8f74335 100644
--- a/OpenSim/Services/Connectors/Land/LandServiceConnector.cs
+++ b/OpenSim/Services/Connectors/Land/LandServiceConnector.cs
@@ -90,7 +90,7 @@ namespace OpenSim.Services.Connectors
90 XmlRpcResponse response = request.Send(uri, 10000); 90 XmlRpcResponse response = request.Send(uri, 10000);
91 if (response.IsFault) 91 if (response.IsFault)
92 { 92 {
93 m_log.ErrorFormat("[LAND CONNECTOR] remote call returned an error: {0}", response.FaultString); 93 m_log.ErrorFormat("[LAND CONNECTOR]: remote call returned an error: {0}", response.FaultString);
94 } 94 }
95 else 95 else
96 { 96 {
@@ -112,22 +112,26 @@ namespace OpenSim.Services.Connectors
112 landData.UserLocation = Vector3.Parse((string)hash["UserLocation"]); 112 landData.UserLocation = Vector3.Parse((string)hash["UserLocation"]);
113 if (hash["RegionAccess"] != null) 113 if (hash["RegionAccess"] != null)
114 regionAccess = (byte)Convert.ToInt32((string)hash["RegionAccess"]); 114 regionAccess = (byte)Convert.ToInt32((string)hash["RegionAccess"]);
115 m_log.DebugFormat("[OGS1 GRID SERVICES] Got land data for parcel {0}", landData.Name); 115 m_log.DebugFormat("[LAND CONNECTOR]: Got land data for parcel {0}", landData.Name);
116 } 116 }
117 catch (Exception e) 117 catch (Exception e)
118 { 118 {
119 m_log.Error("[LAND CONNECTOR] Got exception while parsing land-data:", e); 119 m_log.ErrorFormat(
120 "[LAND CONNECTOR]: Got exception while parsing land-data: {0} {1}",
121 e.Message, e.StackTrace);
120 } 122 }
121 } 123 }
122 } 124 }
123 else m_log.WarnFormat("[LAND CONNECTOR] Couldn't find region with handle {0}", regionHandle); 125 else
126 m_log.WarnFormat("[LAND CONNECTOR]: Couldn't find region with handle {0}", regionHandle);
124 } 127 }
125 catch (Exception e) 128 catch (Exception e)
126 { 129 {
127 m_log.ErrorFormat("[LAND CONNECTOR] Couldn't contact region {0}: {1}", regionHandle, e); 130 m_log.ErrorFormat(
131 "[LAND CONNECTOR]: Couldn't contact region {0}: {1} {2}", regionHandle, e.Message, e.StackTrace);
128 } 132 }
129 133
130 return landData; 134 return landData;
131 } 135 }
132 } 136 }
133} 137} \ No newline at end of file