projects
/
platform
/
core
/
appfw
/
amd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eb6a63f
)
Update app startup signal log
82/228882/1
author
hyunho
<hhstark.kang@samsung.com>
Thu, 26 Mar 2020 06:48:44 +0000
(15:48 +0900)
committer
hyunho
<hhstark.kang@samsung.com>
Thu, 26 Mar 2020 06:49:16 +0000
(15:49 +0900)
Change-Id: I04384b3d3e1ca428d620bf144f499675e64c8c2c
Signed-off-by: hyunho <hhstark.kang@samsung.com>
src/core/amd_launch.c
patch
|
blob
|
history
diff --git
a/src/core/amd_launch.c
b/src/core/amd_launch.c
index fad5c8ac3abc0b259c5ee04c6937d636946a8c4c..b0396466b885e3a64c1e48c6fd0d7b74eea18b3d 100644
(file)
--- a/
src/core/amd_launch.c
+++ b/
src/core/amd_launch.c
@@
-1862,7
+1862,7
@@
static int __dispatch_app_startup_signal(request_h req)
int pid = _request_get_pid(req);
app_status_h app_status;
- _
I
("[START] pid(%d)", pid);
+ _
W
("[START] pid(%d)", pid);
app_status = _app_status_find(pid);
if (app_status == NULL)
return -1;
@@
-1874,7
+1874,7
@@
static int __dispatch_app_startup_signal(request_h req)
_request_reply_reset_pending_timer(req, PENDING_REQUEST_TIMEOUT, pid);
_noti_send(NOTI_MSG_LAUNCH_APP_STARTUP_SIGNAL_END, pid, 0, req, NULL);
- _
I
("[END] pid(%d)", pid);
+ _
W
("[END] pid(%d)", pid);
return 0;
}