aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/LoginService.cs
diff options
context:
space:
mode:
authorAdam Frisby2007-12-04 10:22:09 +0000
committerAdam Frisby2007-12-04 10:22:09 +0000
commit01db4cd71dd935407c1449e34921719036c2ec56 (patch)
tree8638a9ec4503ef20dc600dd823f28f286a6261f0 /OpenSim/Framework/Communications/LoginService.cs
parent* Fixed a whole bunch of console messages. (diff)
downloadopensim-SC_OLD-01db4cd71dd935407c1449e34921719036c2ec56.zip
opensim-SC_OLD-01db4cd71dd935407c1449e34921719036c2ec56.tar.gz
opensim-SC_OLD-01db4cd71dd935407c1449e34921719036c2ec56.tar.bz2
opensim-SC_OLD-01db4cd71dd935407c1449e34921719036c2ec56.tar.xz
* More console message fixes
* Tagged Verbose("msg",...) as obsolete. Please use Verbose("AREA","msg",...) instead.
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Communications/LoginService.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/Communications/LoginService.cs b/OpenSim/Framework/Communications/LoginService.cs
index e7441b8..d18cf63 100644
--- a/OpenSim/Framework/Communications/LoginService.cs
+++ b/OpenSim/Framework/Communications/LoginService.cs
@@ -158,7 +158,7 @@ namespace OpenSim.Framework.UserManagement
158 } 158 }
159 catch (Exception e) 159 catch (Exception e)
160 { 160 {
161 MainLog.Instance.Verbose(e.ToString()); 161 MainLog.Instance.Verbose("LOGIN", e.ToString());
162 return logResponse.CreateDeadRegionResponse(); 162 return logResponse.CreateDeadRegionResponse();
163 //return logResponse.ToXmlRpcResponse(); 163 //return logResponse.ToXmlRpcResponse();
164 } 164 }
@@ -168,7 +168,7 @@ namespace OpenSim.Framework.UserManagement
168 168
169 catch (Exception E) 169 catch (Exception E)
170 { 170 {
171 MainLog.Instance.Verbose(E.ToString()); 171 MainLog.Instance.Verbose("LOGIN", E.ToString());
172 } 172 }
173 //} 173 //}
174 } 174 }