projects
/
platform
/
core
/
appfw
/
launchpad.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1469fee
)
Reduce printing logs
12/236612/3
author
Hwankyu Jhun
<h.jhun@samsung.com>
Thu, 18 Jun 2020 22:45:36 +0000
(07:45 +0900)
committer
HwanKyu Jhun
<h.jhun@samsung.com>
Thu, 18 Jun 2020 23:19:20 +0000
(23:19 +0000)
Change-Id: I8da9db42385a395aaf4a36d83ff27d48ffe1f7e8
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
src/common/src/launchpad_plugin.c
patch
|
blob
|
history
diff --git
a/src/common/src/launchpad_plugin.c
b/src/common/src/launchpad_plugin.c
index 912c19d070db19992c0f3edf0a6da526f228e9cb..30f41c3d7c6ff820fa9043d53cde7aa9ed5d3adf 100644
(file)
--- a/
src/common/src/launchpad_plugin.c
+++ b/
src/common/src/launchpad_plugin.c
@@
-35,7
+35,8
@@
int _launchpad_plugin_prepare_app(const char *app_id, bundle *kb)
ret = access(PATH_LAUNCHPAD_PLUGIN, F_OK);
if (ret != 0) {
- _D("plugin module does not exist. errno(%d)", errno);
+ if (errno != ENOENT)
+ _W("plugin module does not exist. errno(%d)", errno);
return 0;
}