Skip to content

Commit 51f181b

Browse files
ipcs : Decrease log level. (#426)
of ipcs event notification 'errors' that can occur in normal use.
1 parent 06ac2d4 commit 51f181b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/ipcs.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ qb_ipcs_event_send(struct qb_ipcs_connection * c, const void *data, size_t size)
406406
resn = new_event_notification(c);
407407
if (resn < 0 && resn != -EAGAIN && resn != -ENOBUFS) {
408408
errno = -resn;
409-
qb_util_perror(LOG_WARNING,
409+
qb_util_perror(LOG_DEBUG,
410410
"new_event_notification (%s)",
411411
c->description);
412412
res = resn;
@@ -448,7 +448,7 @@ qb_ipcs_event_sendv(struct qb_ipcs_connection * c,
448448
resn = new_event_notification(c);
449449
if (resn < 0 && resn != -EAGAIN) {
450450
errno = -resn;
451-
qb_util_perror(LOG_WARNING,
451+
qb_util_perror(LOG_DEBUG,
452452
"new_event_notification (%s)",
453453
c->description);
454454
res = resn;

0 commit comments

Comments
 (0)