diff options
author | Diva Canto | 2013-07-02 16:46:35 -0700 |
---|---|---|
committer | Diva Canto | 2013-07-02 16:46:35 -0700 |
commit | 4d24bf75fd695a12683987d9803018c2ec4cae60 (patch) | |
tree | e6bff84a06ba9aaa9ebb5099fba32027a1a9b486 /OpenSim/Region/CoreModules | |
parent | Fix SQL statement (diff) | |
download | opensim-SC_OLD-4d24bf75fd695a12683987d9803018c2ec4cae60.zip opensim-SC_OLD-4d24bf75fd695a12683987d9803018c2ec4cae60.tar.gz opensim-SC_OLD-4d24bf75fd695a12683987d9803018c2ec4cae60.tar.bz2 opensim-SC_OLD-4d24bf75fd695a12683987d9803018c2ec4cae60.tar.xz |
Deleted debug messages. Fixed a null ref exception on the POST handler of GridUserServerPostHandler.cs
Diffstat (limited to 'OpenSim/Region/CoreModules')
-rw-r--r-- | OpenSim/Region/CoreModules/Framework/UserManagement/UserManagementModule.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/OpenSim/Region/CoreModules/Framework/UserManagement/UserManagementModule.cs b/OpenSim/Region/CoreModules/Framework/UserManagement/UserManagementModule.cs index ff31b67..90af82e 100644 --- a/OpenSim/Region/CoreModules/Framework/UserManagement/UserManagementModule.cs +++ b/OpenSim/Region/CoreModules/Framework/UserManagement/UserManagementModule.cs | |||
@@ -323,7 +323,6 @@ namespace OpenSim.Region.CoreModules.Framework.UserManagement | |||
323 | GridUserInfo uInfo = m_Scenes[0].GridUserService.GetGridUserInfo(uuid.ToString()); | 323 | GridUserInfo uInfo = m_Scenes[0].GridUserService.GetGridUserInfo(uuid.ToString()); |
324 | if (uInfo != null) | 324 | if (uInfo != null) |
325 | { | 325 | { |
326 | m_log.DebugFormat("[USER MANAGEMENT MODULE]: Found grid user {0}", uInfo.UserID); | ||
327 | string url, first, last, tmp; | 326 | string url, first, last, tmp; |
328 | UUID u; | 327 | UUID u; |
329 | if (Util.ParseUniversalUserIdentifier(uInfo.UserID, out u, out url, out first, out last, out tmp)) | 328 | if (Util.ParseUniversalUserIdentifier(uInfo.UserID, out u, out url, out first, out last, out tmp)) |
@@ -336,10 +335,10 @@ namespace OpenSim.Region.CoreModules.Framework.UserManagement | |||
336 | return true; | 335 | return true; |
337 | } | 336 | } |
338 | else | 337 | else |
339 | m_log.DebugFormat("[USER MANAGEMENT MODULE]: Unable to parse UUI"); | 338 | m_log.DebugFormat("[USER MANAGEMENT MODULE]: Unable to parse UUI {0}", uInfo.UserID); |
340 | } | 339 | } |
341 | else | 340 | else |
342 | m_log.DebugFormat("[USER MANAGEMENT MODULE]: No grid user found"); | 341 | m_log.DebugFormat("[USER MANAGEMENT MODULE]: No grid user found {0}", uuid); |
343 | 342 | ||
344 | names[0] = "Unknown"; | 343 | names[0] = "Unknown"; |
345 | names[1] = "UserUMMTGUN6"; | 344 | names[1] = "UserUMMTGUN6"; |