aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/OGS1
diff options
context:
space:
mode:
authorAdam Frisby2007-12-04 10:13:13 +0000
committerAdam Frisby2007-12-04 10:13:13 +0000
commit91c1e8a7347cd4909a3fa0c6be78bfb9ba9519f0 (patch)
tree7197561681677d4bd7202d9c7a49757b28bccd04 /OpenSim/Region/Communications/OGS1
parentremoved old svn eol-style property (diff)
downloadopensim-SC_OLD-91c1e8a7347cd4909a3fa0c6be78bfb9ba9519f0.zip
opensim-SC_OLD-91c1e8a7347cd4909a3fa0c6be78bfb9ba9519f0.tar.gz
opensim-SC_OLD-91c1e8a7347cd4909a3fa0c6be78bfb9ba9519f0.tar.bz2
opensim-SC_OLD-91c1e8a7347cd4909a3fa0c6be78bfb9ba9519f0.tar.xz
* Fixed a whole bunch of console messages.
Diffstat (limited to 'OpenSim/Region/Communications/OGS1')
-rw-r--r--OpenSim/Region/Communications/OGS1/OGS1GridServices.cs2
-rw-r--r--OpenSim/Region/Communications/OGS1/OGS1UserServices.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
index f4e858b..b11a91f 100644
--- a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
+++ b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
@@ -433,7 +433,7 @@ namespace OpenSim.Region.Communications.OGS1
433 433
434 m_localBackend.TriggerExpectUser(regionHandle, agentData); 434 m_localBackend.TriggerExpectUser(regionHandle, agentData);
435 435
436 MainLog.Instance.Verbose("ExpectUser() - Welcoming new user..."); 436 MainLog.Instance.Verbose("GRID", "Welcoming new user...");
437 437
438 return new XmlRpcResponse(); 438 return new XmlRpcResponse();
439 } 439 }
diff --git a/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs b/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs
index b841154..475066e 100644
--- a/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs
+++ b/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs
@@ -50,7 +50,7 @@ namespace OpenSim.Region.Communications.OGS1
50 { 50 {
51 if (data.Contains("error_type")) 51 if (data.Contains("error_type"))
52 { 52 {
53 Console.WriteLine("Error sent by user server when trying to get user profile: (" + data["error_type"] + 53 OpenSim.Framework.Console.MainLog.Instance.Warn("GRID", "Error sent by user server when trying to get user profile: (" + data["error_type"] +
54 "): " + data["error_desc"]); 54 "): " + data["error_desc"]);
55 return null; 55 return null;
56 } 56 }