X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2FFUiIme_InputMethodManagerImpl.cpp;h=f1f900f747fb23d73ac8105df6719b525058ed65;hb=482b36fcc58f069bcf14b5646725d98d2e14cf73;hp=6b046afd7bb06efd806a5d7b5c13f2705eb18bbd;hpb=b64aec78734d66f342dc694affb21ccad94bb808;p=platform%2Fframework%2Fnative%2Fime.git diff --git a/src/FUiIme_InputMethodManagerImpl.cpp b/src/FUiIme_InputMethodManagerImpl.cpp index 6b046af..f1f900f 100644 --- a/src/FUiIme_InputMethodManagerImpl.cpp +++ b/src/FUiIme_InputMethodManagerImpl.cpp @@ -89,7 +89,7 @@ _InputMethodManagerImpl::GetInstance(InputMethodManager& inputMethodManager) InputMethodInfo* _InputMethodManagerImpl::GetInputMethodInfoN(const char* pAppRootPath) { - SysLog(NID_UI_IME, "The root path of the application is %s.", pAppRootPath); + SysSecureLog(NID_UI_IME, "The root path of the application is %s.", pAppRootPath); result r = E_SUCCESS; @@ -167,7 +167,7 @@ _InputMethodManagerImpl::ParseInputMethodInfo(const xmlNodePtr pXmlRootElement, if (pXmlChar) { pInputMethodInfoImpl->SetAppId(reinterpret_cast(pXmlChar)); - SysLog(NID_UI_IME, "The package ID is %s.", reinterpret_cast(pXmlChar)); + SysSecureLog(NID_UI_IME, "The package ID is %s.", reinterpret_cast(pXmlChar)); xmlFree(pXmlChar); } } @@ -177,7 +177,7 @@ _InputMethodManagerImpl::ParseInputMethodInfo(const xmlNodePtr pXmlRootElement, if (pXmlChar) { pInputMethodInfoImpl->SetUuid(reinterpret_cast(pXmlChar)); - SysLog(NID_UI_IME, "The UUID is %s.", reinterpret_cast(pXmlChar)); + SysSecureLog(NID_UI_IME, "The UUID is %s.", reinterpret_cast(pXmlChar)); xmlFree(pXmlChar); } } @@ -192,7 +192,7 @@ _InputMethodManagerImpl::ParseInputMethodInfo(const xmlNodePtr pXmlRootElement, pInputMethodInfoImpl->SetAppId(appId); pInputMethodInfoImpl->SetName(String(reinterpret_cast(pXmlChar))); - SysLog(NID_UI_IME, "The name is %s.", reinterpret_cast(pXmlChar)); + SysSecureLog(NID_UI_IME, "The name is %s.", reinterpret_cast(pXmlChar)); xmlFree(pXmlChar); } } @@ -241,7 +241,7 @@ _InputMethodManagerImpl::PackageManagerAppIdHandler(pkgmgrinfo_appinfo_h handle, r = pInputMethodAppIdList->Add(pAppId); SysTryCatch(NID_UI_IME, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r)); - SysLog(NID_UI_IME, "The application ID of the input method installed in the system is %s.", appId); + SysSecureLog(NID_UI_IME, "The application ID of the input method installed in the system is %s.", appId); return 0; @@ -384,7 +384,7 @@ _InputMethodManagerImpl::GetInputMethodInfoListN(void) const r = pInputMethodInfoImpl->SetLanguageList(*(pLanguageList.get())); SysTryCatch(NID_UI_IME, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r)); - SysLog(NID_UI_IME, "The UUID of the preloaded IME application is %s.", dpList[preloadedImeIndex]); + SysSecureLog(NID_UI_IME, "The UUID of the preloaded IME application is %s.", dpList[preloadedImeIndex]); r = pInputMethodInfoList->Add(pInputMethodInfo); SysTryCatch(NID_UI_IME, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r)); @@ -447,7 +447,7 @@ _InputMethodManagerImpl::SetInputMethod(const AppId& id) result r = E_SUCCESS; std::unique_ptr pLog(_StringConverter::CopyToCharArrayN(id.GetPointer())); - SysLog(NID_UI_IME, "The application ID is %s.", pLog.get()); + SysSecureLog(NID_UI_IME, "The application ID is %s.", pLog.get()); if (id == _PRELOADED_IME_APPID) {