From febdea11ae0a943516444ba6993a07b9a8fd9499 Mon Sep 17 00:00:00 2001 From: "eh1112.kim" Date: Wed, 17 Apr 2013 12:15:48 +0900 Subject: [PATCH] Changed SysLog -> SysSecureLog. Change-Id: Ia98c107eb13297a4769de45a0579b5650399a759 Signed-off-by: eh1112.kim --- src/FTel_NetworkSettingEvent.cpp | 2 +- src/FTel_SimInfoImpl.cpp | 4 ++-- src/FTel_TelephonyIpcProxy.cpp | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) mode change 100644 => 100755 src/FTel_NetworkSettingEvent.cpp mode change 100644 => 100755 src/FTel_SimInfoImpl.cpp mode change 100644 => 100755 src/FTel_TelephonyIpcProxy.cpp diff --git a/src/FTel_NetworkSettingEvent.cpp b/src/FTel_NetworkSettingEvent.cpp old mode 100644 new mode 100755 index 38c072f..f7b3211 --- a/src/FTel_NetworkSettingEvent.cpp +++ b/src/FTel_NetworkSettingEvent.cpp @@ -116,7 +116,7 @@ _NetworkSettingEvent::FireImpl(Tizen::Base::Runtime::IEventListener& listener, c { NetworkInfo* pNetworkInfo = dynamic_cast(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()); } diff --git a/src/FTel_SimInfoImpl.cpp b/src/FTel_SimInfoImpl.cpp old mode 100644 new mode 100755 index 805d409..12be533 --- a/src/FTel_SimInfoImpl.cpp +++ b/src/FTel_SimInfoImpl.cpp @@ -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)); diff --git a/src/FTel_TelephonyIpcProxy.cpp b/src/FTel_TelephonyIpcProxy.cpp old mode 100644 new mode 100755 index 68104ab..ebddb2e --- a/src/FTel_TelephonyIpcProxy.cpp +++ b/src/FTel_TelephonyIpcProxy.cpp @@ -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; } -- 2.7.4