You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ja...@apache.org on 2014/07/07 09:44:51 UTC

svn commit: r1608358 - in /ofbiz/branches/release11.04: ./ framework/common/src/org/ofbiz/common/login/LoginServices.java

Author: jacopoc
Date: Mon Jul  7 07:44:51 2014
New Revision: 1608358

URL: http://svn.apache.org/r1608358
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/release11.04/   (props changed)
    ofbiz/branches/release11.04/framework/common/src/org/ofbiz/common/login/LoginServices.java

Propchange: ofbiz/branches/release11.04/
------------------------------------------------------------------------------
  Merged /ofbiz/trunk:r1608355

Modified: ofbiz/branches/release11.04/framework/common/src/org/ofbiz/common/login/LoginServices.java
URL: http://svn.apache.org/viewvc/ofbiz/branches/release11.04/framework/common/src/org/ofbiz/common/login/LoginServices.java?rev=1608358&r1=1608357&r2=1608358&view=diff
==============================================================================
--- ofbiz/branches/release11.04/framework/common/src/org/ofbiz/common/login/LoginServices.java (original)
+++ ofbiz/branches/release11.04/framework/common/src/org/ofbiz/common/login/LoginServices.java Mon Jul  7 07:44:51 2014
@@ -960,7 +960,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();