aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/AuthenticationService
diff options
context:
space:
mode:
authorUbitUmarov2015-11-24 02:03:38 +0000
committerUbitUmarov2015-11-24 02:03:38 +0000
commit87464b50392922aafdd752029487e57e08947b16 (patch)
treecc9f6404142299d79fbcc44231335b96632bd36e /OpenSim/Services/AuthenticationService
parentrevert previus commit (diff)
downloadopensim-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/AuthenticationService')
-rw-r--r--OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs2
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 {