From 0f9f054bbfeb52414eb18e62d67084e80e0517fc Mon Sep 17 00:00:00 2001 From: Edison Su Date: Mon, 16 Jan 2012 11:52:25 -0800 Subject: [PATCH] bug 10957: don't log vpn password status 10957: resolved fixed --- api/src/com/cloud/agent/api/routing/VpnUsersCfgCommand.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/api/src/com/cloud/agent/api/routing/VpnUsersCfgCommand.java b/api/src/com/cloud/agent/api/routing/VpnUsersCfgCommand.java index c5391a031de..bbdf829cf68 100644 --- a/api/src/com/cloud/agent/api/routing/VpnUsersCfgCommand.java +++ b/api/src/com/cloud/agent/api/routing/VpnUsersCfgCommand.java @@ -19,12 +19,15 @@ package com.cloud.agent.api.routing; import java.util.List; +import com.cloud.agent.api.LogLevel; +import com.cloud.agent.api.LogLevel.Log4jLevel; import com.cloud.network.VpnUser; public class VpnUsersCfgCommand extends NetworkElementCommand { public static class UsernamePassword{ private String username; + @LogLevel(Log4jLevel.Off) private String password; boolean add = true;