From: Young Ik Cho Date: Thu, 11 Jul 2013 11:31:36 +0000 (+0900) Subject: remove redundant log X-Git-Tag: accepted/tizen/20130912.081851^2~135 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0c354898279363f1a1c6e457ca9f3fbd097650f3;p=platform%2Fframework%2Fnative%2Fappfw.git remove redundant log Change-Id: I32f0c831874fa8c0924706e15ceb5ac9205b99ed Signed-off-by: Young Ik Cho --- diff --git a/src/app/FApp_AppArg.cpp b/src/app/FApp_AppArg.cpp index 2d33f5a..3d5c714 100644 --- a/src/app/FApp_AppArg.cpp +++ b/src/app/FApp_AppArg.cpp @@ -1242,49 +1242,6 @@ _AppArg::Print(bundle* b) return; } - const char* p = null; - p = appsvc_get_data(b, AUL_K_CALLER_PID); - if (p) - { - SysLog(NID_APP, "CallerPId[%s]", p); - } - - p = appsvc_get_data(b, AUL_K_WAIT_RESULT); - if (p) - { - SysLog(NID_APP, "WaitResult[%s]", p); - } - - p = appsvc_get_data(b, OSP_K_COND); - if (p) - { - SysLog(NID_APP, "Condition[%s]", p); - } - - p = appsvc_get_operation(b); - if (p) - { - SysLog(NID_APP, "operation[%s]", p); - } - - p = appsvc_get_uri(b); - if (p) - { - SysLog(NID_APP, "uri[%s]", p); - } - - p = appsvc_get_mime(b); - if (p) - { - SysLog(NID_APP, "mime[%s]", p); - } - - p = appsvc_get_category(b); - if (p) - { - SysLog(NID_APP, "Category[%s]", p); - } - bundle_foreach(b, BundlePrintIterFnCb, NULL); int len = 0; diff --git a/src/app/FApp_AppControlRegistry.cpp b/src/app/FApp_AppControlRegistry.cpp index 1cd9620..8bcb653 100644 --- a/src/app/FApp_AppControlRegistry.cpp +++ b/src/app/FApp_AppControlRegistry.cpp @@ -59,7 +59,6 @@ const wchar_t ACTL_ALIAS_FILE[] = L"/usr/etc/app-control-appid.ini"; const wchar_t TIZEN_ALIAS_APPID_PREFIX[] = L"tizen."; -const String ACTL_REGISTRY_PUBLIC = L"Public"; const String ACTL_REGISTRY_PATH = L"Path"; const String ACTL_REGISTRY_ALIAS_PROVIDER = L"PROVIDER_ALIAS"; @@ -149,26 +148,6 @@ _AppControlRegistry::LoadTizenAppControlRegistry(void) continue; } -#if 0 - int public_open = 0; - - /////////////////////////////////////////////////////////////////////// - // Plubic - index = reg.GetEntryIndex(i, ACTL_REGISTRY_PUBLIC); - if (index >= 0) - { - size = sizeof(size); - num = 0; - - reg.GetEntryValue(i, index, REG_VALUE_TYPE_INT, &num, &size); - if (num == 1) - { - // public - public_open = 1; - } - } -#endif - /////////////////////////////////////////////////////////////////////// // Path index = reg.GetEntryIndex(i, ACTL_REGISTRY_PATH);