refinement of osp-appfw log messages
[platform/framework/native/appfw.git] / src / app / FApp_AppControlImpl.cpp
index 93f595a..a43f50f 100755 (executable)
@@ -512,7 +512,7 @@ _AppControlImpl::AppControlCbLegacy(void* data, _AppArg* pArg, _AppArg* pResArg,
                String tmp = _AppControlRegistry::GetInstance()->GetReverseAliasAppId(provider);
                if (!tmp.IsEmpty())
                {
-                       SysLog(NID_APP, "AppId change (%ls -> %ls).", provider.GetPointer(), tmp.GetPointer());
+                       SysLog(NID_APP, "App change (%ls -> %ls).", provider.GetPointer(), tmp.GetPointer());
 
                        provider = tmp;
                }
@@ -577,7 +577,7 @@ _AppControlImpl::AppControlCb(void* data, _AppArg* pArg, _AppArg* pResArg, servi
                String tmp = _AppControlRegistry::GetInstance()->GetReverseAliasAppId(provider);
                if (!tmp.IsEmpty())
                {
-                       SysLog(NID_APP, "AppId change (%ls -> %ls).", provider.GetPointer(), tmp.GetPointer());
+                       SysLog(NID_APP, "App change (%ls -> %ls).", provider.GetPointer(), tmp.GetPointer());
 
                        provider = tmp;
                }
@@ -939,7 +939,7 @@ _AppControlImpl::GetCategoryListN(void) const
        const AppId& appId = GetAppId();
        SysTryReturn(NID_APP, !appId.IsEmpty(), null, E_SYSTEM, "[E_SYSTEM] Empty appId.");
 
-       SysLog(NID_APP, "Acquiring category for appId %ls.", appId.GetPointer());
+       SysLog(NID_APP, "Acquiring category for app %ls.", appId.GetPointer());
 
        std::unique_ptr<PackageAppInfo> pAppInfo(_PackageManagerImpl::GetInstance()->GetPackageAppInfoN(appId));
        SysTryReturn(NID_APP, pAppInfo.get() != null, null, E_SYSTEM, "[E_SYSTEM] Getting PackageAppInfo failed.");