diff options
author | UbitUmarov | 2015-11-24 02:03:38 +0000 |
---|---|---|
committer | UbitUmarov | 2015-11-24 02:03:38 +0000 |
commit | 87464b50392922aafdd752029487e57e08947b16 (patch) | |
tree | cc9f6404142299d79fbcc44231335b96632bd36e /OpenSim/Services | |
parent | revert previus commit (diff) | |
download | opensim-SC_OLD-87464b50392922aafdd752029487e57e08947b16.zip opensim-SC_OLD-87464b50392922aafdd752029487e57e08947b16.tar.gz opensim-SC_OLD-87464b50392922aafdd752029487e57e08947b16.tar.bz2 opensim-SC_OLD-87464b50392922aafdd752029487e57e08947b16.tar.xz |
remove a debug message
Diffstat (limited to 'OpenSim/Services')
-rw-r--r-- | OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs b/OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs index a069838..a9359f3 100644 --- a/OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs +++ b/OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs | |||
@@ -93,7 +93,7 @@ namespace OpenSim.Services.AuthenticationService | |||
93 | string hashed = Util.Md5Hash(password + ":" + | 93 | string hashed = Util.Md5Hash(password + ":" + |
94 | data.Data["passwordSalt"].ToString()); | 94 | data.Data["passwordSalt"].ToString()); |
95 | 95 | ||
96 | m_log.DebugFormat("[PASS AUTH]: got {0}; hashed = {1}; stored = {2}", password, hashed, data.Data["passwordHash"].ToString()); | 96 | // m_log.DebugFormat("[PASS AUTH]: got {0}; hashed = {1}; stored = {2}", password, hashed, data.Data["passwordHash"].ToString()); |
97 | 97 | ||
98 | if (data.Data["passwordHash"].ToString() == hashed) | 98 | if (data.Data["passwordHash"].ToString() == hashed) |
99 | { | 99 | { |