Fix incorrect log message 48/229048/1
authorJi-hoon Lee <dalton.lee@samsung.com>
Fri, 27 Mar 2020 09:05:20 +0000 (18:05 +0900)
committerJi-hoon Lee <dalton.lee@samsung.com>
Fri, 27 Mar 2020 09:05:24 +0000 (18:05 +0900)
Change-Id: I62f68221e53599f154702d0387927b6a73064f0f

src/multi_assistant_service.c

index 1375661..0e5ff55 100644 (file)
@@ -1445,7 +1445,7 @@ static void _package_manager_event_cb(const char *type, const char *package, pac
                type, package, event_type, event_state, progress, error);
        ret = pkgmgrinfo_pkginfo_get_pkginfo(package, &handle);
        if (ret != PMINFO_R_OK || NULL == handle) {
-               LOGW("Failed to call pkgmgrinfo_pkginfo_get_pkginfo & get_usr_pkginfo(\"%s\",~) returned %d, uid : %d", package, ret, getuid ());
+               LOGW("Failed to call pkgmgrinfo_pkginfo_get_pkginfo(\"%s\",~) returned %d", package, ret);
                /* Try to get in user packages */
                user = true;
                ret = pkgmgrinfo_pkginfo_get_usr_pkginfo (package, uid, &handle);