Apply SecureLog.
authorJaemin Ahn <j.m.ahn@samsung.com>
Wed, 24 Apr 2013 23:52:29 +0000 (08:52 +0900)
committerJaemin Ahn <j.m.ahn@samsung.com>
Wed, 24 Apr 2013 23:52:29 +0000 (08:52 +0900)
Change-Id: I2496747b5c8ee72378b18afe573149ee3f4f5803
Signed-off-by: Jaemin Ahn <j.m.ahn@samsung.com>
src/FNet_WifiDirectSystemNetConnection.cpp

index fbcac3b..fd32169 100644 (file)
@@ -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);