From 4be6808479dbf637c781e0d2ec086e89cadaebac Mon Sep 17 00:00:00 2001 From: Joohyun Kim Date: Thu, 18 Jul 2013 22:09:23 +0900 Subject: [PATCH] Fix setting framework Change-Id: I25c8005e84cf6536dfd94a4719a2a412e11ccb3a Signed-off-by: Joohyun Kim --- src/system/FSys_SettingService.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/system/FSys_SettingService.cpp b/src/system/FSys_SettingService.cpp index 4faa0d5..7d2e764 100644 --- a/src/system/FSys_SettingService.cpp +++ b/src/system/FSys_SettingService.cpp @@ -341,6 +341,7 @@ _SettingService::OnRequestOccured(const ArrayList& request, ArrayList* response) pKey = (String*)request.GetAt(SETTING_SERVICE_IPC_MSG_KEY); SysTryCatch(NID_SYS, pKey != null, r = E_SYSTEM, r, "There is no key information."); value = __pSettingInfo->HasKey(*pKey); + SysLog(NID_SYS, "%ls is %d.", pKey->GetPointer(), value); pValue = new (nothrow) String(); SysTryCatch(NID_SYS, pValue != null, r = E_SYSTEM, r, "It is failed to create pValue."); pValue->Append(value); -- 2.7.4