Changed SysLog -> SysSecureLog.
authoreh1112.kim <eh1112.kim@samsung.com>
Wed, 17 Apr 2013 03:15:48 +0000 (12:15 +0900)
committereh1112.kim <eh1112.kim@samsung.com>
Wed, 17 Apr 2013 03:15:48 +0000 (12:15 +0900)
Change-Id: Ia98c107eb13297a4769de45a0579b5650399a759
Signed-off-by: eh1112.kim <eh1112.kim@samsung.com>
src/FTel_NetworkSettingEvent.cpp [changed mode: 0644->0755]
src/FTel_SimInfoImpl.cpp [changed mode: 0644->0755]
src/FTel_TelephonyIpcProxy.cpp [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index 38c072f..f7b3211
@@ -116,7 +116,7 @@ _NetworkSettingEvent::FireImpl(Tizen::Base::Runtime::IEventListener& listener, c
                        {
                                NetworkInfo* pNetworkInfo = dynamic_cast<NetworkInfo*>(pDescNetworkInfoList->GetAt(i));
                                SysTryCatch(NID_TEL, pNetworkInfo != null, , E_SYSTEM, "[%s] A system error has occured. Failed on dynamic casting", GetErrorMessage(E_SYSTEM));
-                               SysLog(NID_TEL, "The cellid is %d, lac is %d, mcc is %d, mnc is %d, operator name is %ls, and plmn is %ls"
+                               SysSecureLog(NID_TEL, "The cellid is %d, lac is %d, mcc is %d, mnc is %d, operator name is %ls, and plmn is %ls"
                                , pNetworkInfo->GetCellId(), pNetworkInfo->GetLac(), pNetworkInfo->GetMcc(), pNetworkInfo->GetMnc(), pNetworkInfo->GetOperatorName().GetPointer(), pNetworkInfo->GetPlmn().GetPointer());
                        }
 
old mode 100644 (file)
new mode 100755 (executable)
index 805d409..12be533
@@ -153,7 +153,7 @@ _SimInfoImpl::GetIccId(void) const
                "[%s] The operation failed because the SIM card is not ready.", GetErrorMessage(E_DEVICE_UNAVAILABLE));
 
        err = sim_get_icc_id(&pIccId);
-       SysLog(NID_TEL, "The return value of sim_get_icc_id() is [0x%x] and the iccid value is [%s]", err, pIccId);
+       SysSecureLog(NID_TEL, "The return value of sim_get_icc_id() is [0x%x] and the iccid value is [%s]", err, pIccId);
        SysTryReturn(NID_TEL, err == SIM_ERROR_NONE, iccId, E_DEVICE_UNAVAILABLE,
                "[%s] The operation failed.", GetErrorMessage(E_DEVICE_UNAVAILABLE));
 
@@ -179,7 +179,7 @@ _SimInfoImpl::GetOperatorName(void) const
                "[%s] The operation failed because the SIM card is not ready.", GetErrorMessage(E_DEVICE_UNAVAILABLE));
 
        err = sim_get_cphs_operator_name(&pFullName, &pShortName);
-       SysLog(NID_TEL, "The return value of sim_get_cphs_operator_name() is [0x%x]. full[%s] short[%s]", err, pFullName, pShortName);
+       SysSecureLog(NID_TEL, "The return value of sim_get_cphs_operator_name() is [0x%x]. full[%s] short[%s]", err, pFullName, pShortName);
        SysTryReturn(NID_TEL, err == SIM_ERROR_NONE, operatorName, E_DEVICE_UNAVAILABLE,
                "[%s] The operation failed.", GetErrorMessage(E_DEVICE_UNAVAILABLE));
 
old mode 100644 (file)
new mode 100755 (executable)
index 68104ab..ebddb2e
@@ -121,7 +121,7 @@ _TelephonyIpcProxy::GetImsi(Tizen::Base::String& imsi) const
        SysTryReturnResult(NID_TEL, r == E_SUCCESS, E_SYSTEM, "A system error has been occurred. Failed to send a request.");
        SysTryReturnResult(NID_TEL, ret == E_SUCCESS, ret, "Propagating.");
 
-       SysLog(NID_TEL, "The Telephony Imsi obtained through IPC is %ls.", imsi.GetPointer());
+       SysSecureLog(NID_TEL, "The Telephony Imsi obtained through IPC is %ls.", imsi.GetPointer());
 
        return E_SUCCESS;
 }