svn commit: r1608356 - in /ofbiz/branches/release13.07: ./ framework/common/src/org/ofbiz/common/login/LoginServices.java

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r1608356 - in /ofbiz/branches/release13.07: ./ framework/common/src/org/ofbiz/common/login/LoginServices.java

jacopoc
Author: jacopoc
Date: Mon Jul  7 07:43:25 2014
New Revision: 1608356

URL: http://svn.apache.org/r1608356
Log:
Applied fix from trunk for revision: 1608355
===

Removed useless logInfo statement that was causing the user password to be stored in the log files. Thanks to Grégory Draperi for the report.


Modified:
    ofbiz/branches/release13.07/   (props changed)
    ofbiz/branches/release13.07/framework/common/src/org/ofbiz/common/login/LoginServices.java

Propchange: ofbiz/branches/release13.07/
------------------------------------------------------------------------------
  Merged /ofbiz/trunk:r1608355

Modified: ofbiz/branches/release13.07/framework/common/src/org/ofbiz/common/login/LoginServices.java
URL: http://svn.apache.org/viewvc/ofbiz/branches/release13.07/framework/common/src/org/ofbiz/common/login/LoginServices.java?rev=1608356&r1=1608355&r2=1608356&view=diff
==============================================================================
--- ofbiz/branches/release13.07/framework/common/src/org/ofbiz/common/login/LoginServices.java (original)
+++ ofbiz/branches/release13.07/framework/common/src/org/ofbiz/common/login/LoginServices.java Mon Jul  7 07:43:25 2014
@@ -921,7 +921,6 @@ public class LoginServices {
             passwordChangeHistoryLimit = 0;
         }
         Debug.logInfo(" password.change.history.limit is set to " + passwordChangeHistoryLimit, module);
-        Debug.logInfo(" userLogin is set to " + userLogin, module);
         if (passwordChangeHistoryLimit > 0 && userLogin != null) {
             Debug.logInfo(" checkNewPassword Checking if user is tyring to use old password " + passwordChangeHistoryLimit, module);
             Delegator delegator = userLogin.getDelegator();