Use error code instead of error description in log 49/135349/1
authorSeungha Son <seungha.son@samsung.com>
Thu, 22 Jun 2017 04:15:55 +0000 (13:15 +0900)
committerSeungha Son <seungha.son@samsung.com>
Thu, 22 Jun 2017 04:17:49 +0000 (13:17 +0900)
Signed-off-by: Seungha Son <seungha.son@samsung.com>
Change-Id: I0426ce3a531e5c3fdd7fb44f861d0700e5eff57f

src/notification_ipc.c

index 7d9599d..f8ec714 100755 (executable)
@@ -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;
        }