From: Jaemin Ahn Date: Wed, 24 Apr 2013 23:52:29 +0000 (+0900) Subject: Apply SecureLog. X-Git-Tag: 2.1b_release~3 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fframework%2Fnative%2Fnet.git;a=commitdiff_plain;h=6790bb39877248477547867a3538fc0ec46ccda4 Apply SecureLog. Change-Id: I2496747b5c8ee72378b18afe573149ee3f4f5803 Signed-off-by: Jaemin Ahn --- 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);