From: Seungha Son Date: Thu, 22 Jun 2017 04:15:55 +0000 (+0900) Subject: Use error code instead of error description in log X-Git-Tag: accepted/tizen/unified/20170629.013735~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F49%2F135349%2F1;p=platform%2Fcore%2Fapi%2Fnotification.git Use error code instead of error description in log Signed-off-by: Seungha Son Change-Id: I0426ce3a531e5c3fdd7fb44f861d0700e5eff57f --- 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; }