From 36a657c5420e554bf5018ba0e04d5c12141ddd77 Mon Sep 17 00:00:00 2001 From: Seungha Son Date: Thu, 22 Jun 2017 13:15:55 +0900 Subject: [PATCH] Use error code instead of error description in log Signed-off-by: Seungha Son Change-Id: I0426ce3a531e5c3fdd7fb44f861d0700e5eff57f --- src/notification_ipc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/notification_ipc.c b/src/notification_ipc.c index 7d9599d..f8ec714 100755 --- a/src/notification_ipc.c +++ b/src/notification_ipc.c @@ -708,7 +708,7 @@ static int _send_sync_noti(GVariant *body, GDBusMessage **reply, char *cmd) else ret = err->code; - NOTIFICATION_ERR("_send_sync_noti cmd = %s, error %s, err code %d", cmd, err->message, ret); + NOTIFICATION_ERR("_send_sync_noti cmd = %s, err code = %d", cmd, ret); g_error_free(err); return ret; } -- 2.7.4