You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ke...@apache.org on 2012/05/28 00:30:44 UTC

[33/50] git commit: CS-14940 VSM access credentials are logged in clear text with Management-server.log

CS-14940 VSM access credentials are logged in clear text with Management-server.log

Removed debug log after fetching the credentials.


Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/49673d77
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/49673d77
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/49673d77

Branch: refs/heads/master
Commit: 49673d772bef8009ce57d96f404e73b6e9b8eddd
Parents: ed79950
Author: Sateesh Chodapuneedi <sa...@citrix.com>
Authored: Wed May 16 23:55:03 2012 +0530
Committer: Vijayendra Bhamidipati <vi...@citrix.com>
Committed: Fri May 25 18:04:33 2012 -0700

----------------------------------------------------------------------
 .../cloud/hypervisor/vmware/VmwareManagerImpl.java |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/49673d77/server/src/com/cloud/hypervisor/vmware/VmwareManagerImpl.java
----------------------------------------------------------------------
diff --git a/server/src/com/cloud/hypervisor/vmware/VmwareManagerImpl.java b/server/src/com/cloud/hypervisor/vmware/VmwareManagerImpl.java
index 01b4263..6be517b 100755
--- a/server/src/com/cloud/hypervisor/vmware/VmwareManagerImpl.java
+++ b/server/src/com/cloud/hypervisor/vmware/VmwareManagerImpl.java
@@ -1018,7 +1018,7 @@ public class VmwareManagerImpl implements VmwareManager, VmwareStorageMount, Lis
             nexusVSMCredentials.put("vsmip", nexusVSM.getipaddr());
             nexusVSMCredentials.put("vsmusername", nexusVSM.getUserName());
             nexusVSMCredentials.put("vsmpassword", nexusVSM.getPassword());
-            s_logger.info(nexusVSMCredentials.toString());
+            s_logger.info("Successfully fetched the credentials of Nexus VSM.");
         }
         return nexusVSMCredentials;
     }