From eb46b86050814976d9c751ad10f53bef4895ea7c Mon Sep 17 00:00:00 2001 From: HeeJu Kang Date: Sat, 12 Jan 2013 16:17:19 +0900 Subject: [PATCH] Fixed userInfo Change-Id: Ie7a14a7af9ceda2d58efde6859fc003f18ff918b Signed-off-by: HeeJu Kang --- src/FShell_LiveboxManagerService.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FShell_LiveboxManagerService.cpp b/src/FShell_LiveboxManagerService.cpp index 023cee5..224c8d8 100644 --- a/src/FShell_LiveboxManagerService.cpp +++ b/src/FShell_LiveboxManagerService.cpp @@ -242,7 +242,7 @@ LiveboxManagerService::OnLiveboxCreate(struct event_arg *arg, int *width, int *h SysTryReturn(NID_APP, arg->id != null, EINVAL, E_INVALID_ARG, "[E_INVALID_ARG]"); SysTryReturn(NID_APP, arg->type == event_arg::EVENT_NEW, -EPERM, E_SUCCESS, "invalid argument from master"); - SysLog(NID_APP, "packageName(%s), id(%s)", arg->pkgname, arg->id, arg->info.lb_create.content, arg->info.lb_create.cluster, arg->info.lb_create.category ); + SysLog(NID_APP, "packageName(%s) id(%s) content(%s) cluster(%s) category(%s)", arg->pkgname, arg->id, arg->info.lb_create.content, arg->info.lb_create.cluster, arg->info.lb_create.category); SysTryReturn (NID_APP, LiveboxManagerService::GetInstance()->Find(arg->pkgname, arg->id) == null, -EBUSY, E_SUCCESS,"already exist"); double default_priority = 1.0f; -- 2.34.1