summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHwankyu Jhun <h.jhun@samsung.com>2017-06-07 08:17:08 +0900
committerHwanKyu Jhun <h.jhun@samsung.com>2017-06-07 00:36:20 +0000
commit1a0d6b0a050af2c22a3514cdec596749a7360a2c (patch)
tree95c9e2233086cc66f830fac4bc8c3affef7d4014
parent59c62b0768d46bc7c6b0e94a04e9af5471531b74 (diff)
downloadlaunchpad-1a0d6b0a050af2c22a3514cdec596749a7360a2c.tar.gz
launchpad-1a0d6b0a050af2c22a3514cdec596749a7360a2c.tar.bz2
launchpad-1a0d6b0a050af2c22a3514cdec596749a7360a2c.zip
Fix log message about buxton error handling
This patch adds log messages about errno value. Change-Id: Ida32efcea628f86e0122dec19569b1c9dcb16a8e Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
-rw-r--r--src/launchpad_lib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/launchpad_lib.c b/src/launchpad_lib.c
index 927046e..bb35e50 100644
--- a/src/launchpad_lib.c
+++ b/src/launchpad_lib.c
@@ -82,12 +82,12 @@ static int __prepare_exec(const char *appid, const char *app_path,
ret = buxton_open(&bxt_cli, NULL, NULL);
if (ret != 0) {
- _E("buxton_open() failed");
+ _E("buxton_open() failed, errno(%d)", errno);
return -1;
}
ret = buxton_update_client_label_sync(bxt_cli);
if (ret != 0) {
- _E("buxton_update_client_label() failed");
+ _E("buxton_update_client_label() failed, errno(%d)", errno);
buxton_close(bxt_cli);
return -1;
}