Fix setting framework
authorJoohyun Kim <joohyune.kim@samsung.com>
Thu, 18 Jul 2013 13:09:23 +0000 (22:09 +0900)
committerJoohyun Kim <joohyune.kim@samsung.com>
Thu, 18 Jul 2013 13:09:23 +0000 (22:09 +0900)
Change-Id: I25c8005e84cf6536dfd94a4719a2a412e11ccb3a
Signed-off-by: Joohyun Kim <joohyune.kim@samsung.com>
src/system/FSys_SettingService.cpp

index 4faa0d5..7d2e764 100644 (file)
@@ -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);