From 51f181b3cd5c46abf8bae5b6b3069d222ce4e6ae Mon Sep 17 00:00:00 2001 From: Hideo Yamauchi Date: Thu, 3 Dec 2020 20:33:30 +0900 Subject: [PATCH] ipcs : Decrease log level. (#426) of ipcs event notification 'errors' that can occur in normal use. --- lib/ipcs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ipcs.c b/lib/ipcs.c index 2ecc8099e..2404e132b 100644 --- a/lib/ipcs.c +++ b/lib/ipcs.c @@ -406,7 +406,7 @@ qb_ipcs_event_send(struct qb_ipcs_connection * c, const void *data, size_t size) resn = new_event_notification(c); if (resn < 0 && resn != -EAGAIN && resn != -ENOBUFS) { errno = -resn; - qb_util_perror(LOG_WARNING, + qb_util_perror(LOG_DEBUG, "new_event_notification (%s)", c->description); res = resn; @@ -448,7 +448,7 @@ qb_ipcs_event_sendv(struct qb_ipcs_connection * c, resn = new_event_notification(c); if (resn < 0 && resn != -EAGAIN) { errno = -resn; - qb_util_perror(LOG_WARNING, + qb_util_perror(LOG_DEBUG, "new_event_notification (%s)", c->description); res = resn;