summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHwankyu Jhun <h.jhun@samsung.com>2020-06-19 07:45:36 +0900
committerHwanKyu Jhun <h.jhun@samsung.com>2020-06-18 23:19:20 +0000
commit3a80ec5627488f3b87494eea0698b1aac129df7f (patch)
treeb0527daabcdc93dcd5a9596dc35a4864d355683d
parent1469feefc7c993363ac4df8668367423b3e9f09f (diff)
downloadlaunchpad-3a80ec5627488f3b87494eea0698b1aac129df7f.tar.gz
launchpad-3a80ec5627488f3b87494eea0698b1aac129df7f.tar.bz2
launchpad-3a80ec5627488f3b87494eea0698b1aac129df7f.zip
Reduce printing logs
Change-Id: I8da9db42385a395aaf4a36d83ff27d48ffe1f7e8 Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
-rw-r--r--src/common/src/launchpad_plugin.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/src/launchpad_plugin.c b/src/common/src/launchpad_plugin.c
index 912c19d..30f41c3 100644
--- 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;
}