aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/OGS1
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-08-01 20:05:26 +0000
committerJustin Clarke Casey2008-08-01 20:05:26 +0000
commit5350cec0b37f40033117d011906bf66a5367c30f (patch)
tree06393efe09a69066b1497a69e3e11c7ef1633426 /OpenSim/Region/Communications/OGS1
parent* correct bug from last commit - for now don't drop cached user profile when ... (diff)
downloadopensim-SC_OLD-5350cec0b37f40033117d011906bf66a5367c30f.zip
opensim-SC_OLD-5350cec0b37f40033117d011906bf66a5367c30f.tar.gz
opensim-SC_OLD-5350cec0b37f40033117d011906bf66a5367c30f.tar.bz2
opensim-SC_OLD-5350cec0b37f40033117d011906bf66a5367c30f.tar.xz
* minor: log message twiddling
Diffstat (limited to 'OpenSim/Region/Communications/OGS1')
-rw-r--r--OpenSim/Region/Communications/OGS1/OGS1UserServices.cs8
1 files changed, 2 insertions, 6 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs b/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs
index 852fe5b..015d761 100644
--- a/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs
+++ b/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs
@@ -289,15 +289,11 @@ namespace OpenSim.Region.Communications.OGS1
289 289
290 if (respData == null || !respData.ContainsKey("returnString")) 290 if (respData == null || !respData.ContainsKey("returnString"))
291 { 291 {
292 m_log.Warn("[OSG1 USER SERVICES]: Error updating user record, Grid server may not be updated."); 292 m_log.Error("[OSG1 USER SERVICES]: Error updating user record, Grid server may not be updated.");
293 } 293 }
294 else 294 else
295 { 295 {
296 if ((string) respData["returnString"] == "TRUE") 296 if ((string) respData["returnString"] != "TRUE")
297 {
298 m_log.Info("[OSG1 USER SERVICES]: Successfully updated user record");
299 }
300 else
301 { 297 {
302 m_log.Error("[OSG1 USER SERVICES]: Error updating user record"); 298 m_log.Error("[OSG1 USER SERVICES]: Error updating user record");
303 } 299 }