From 6790bb39877248477547867a3538fc0ec46ccda4 Mon Sep 17 00:00:00 2001 From: Jaemin Ahn Date: Thu, 25 Apr 2013 08:52:29 +0900 Subject: [PATCH] Apply SecureLog. Change-Id: I2496747b5c8ee72378b18afe573149ee3f4f5803 Signed-off-by: Jaemin Ahn --- src/FNet_WifiDirectSystemNetConnection.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/FNet_WifiDirectSystemNetConnection.cpp b/src/FNet_WifiDirectSystemNetConnection.cpp index fbcac3b..fd32169 100644 --- a/src/FNet_WifiDirectSystemNetConnection.cpp +++ b/src/FNet_WifiDirectSystemNetConnection.cpp @@ -341,7 +341,7 @@ _WifiDirectSystemNetConnection::UpdateConnectionInfo(bool isStarted) ret = wifi_direct_get_network_interface_name(&pDeviceName); if ((ret == WIFI_DIRECT_ERROR_NONE) && (pDeviceName != null)) { - SysLog(NID_NET, "DeviceName is %s", pDeviceName); + SysSecureLog(NID_NET, "DeviceName is %s", pDeviceName); deviceName = String(pDeviceName); free(pDeviceName); @@ -356,7 +356,7 @@ _WifiDirectSystemNetConnection::UpdateConnectionInfo(bool isStarted) ret = wifi_direct_get_ip_address(&pLocalAddress); if ((ret == WIFI_DIRECT_ERROR_NONE) && (pLocalAddress != null)) { - SysLog(NID_NET, "LocalAddress is %s", pLocalAddress); + SysSecureLog(NID_NET, "LocalAddress is %s", pLocalAddress); localAddress = String(pLocalAddress); free(pLocalAddress); @@ -369,7 +369,7 @@ _WifiDirectSystemNetConnection::UpdateConnectionInfo(bool isStarted) ret = wifi_direct_get_subnet_mask(&pSubnetMaskAddress); if ((ret == WIFI_DIRECT_ERROR_NONE) && (pSubnetMaskAddress != null)) { - SysLog(NID_NET, "SubnetMaskAddress is %s", pSubnetMaskAddress); + SysSecureLog(NID_NET, "SubnetMaskAddress is %s", pSubnetMaskAddress); subnetMaskAddress = String(pSubnetMaskAddress); free(pSubnetMaskAddress); @@ -382,7 +382,7 @@ _WifiDirectSystemNetConnection::UpdateConnectionInfo(bool isStarted) ret = wifi_direct_get_gateway_address(&pGatewayAddress); if ((ret == WIFI_DIRECT_ERROR_NONE) && (pGatewayAddress != null)) { - SysLog(NID_NET, "GatewayAddress is %s", pGatewayAddress); + SysSecureLog(NID_NET, "GatewayAddress is %s", pGatewayAddress); gatewayAddress = String(pGatewayAddress); free(pGatewayAddress); -- 2.7.4