From 19c0337c4cac78dc302d5a1f637dcad45785a6e3 Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Sun, 28 May 2017 12:25:53 +0200 Subject: [PATCH] Move logging of "would block" messages to debug level 4. --- src/meta.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meta.c b/src/meta.c index 09c063d3..45f27622 100644 --- a/src/meta.c +++ b/src/meta.c @@ -104,7 +104,7 @@ bool flush_meta(connection_t *c) { } else if(errno == EINTR) { continue; } else if(sockwouldblock(sockerrno)) { - ifdebug(CONNECTIONS) logger(LOG_DEBUG, "Flushing %d bytes to %s (%s) would block", + ifdebug(META) logger(LOG_DEBUG, "Flushing %d bytes to %s (%s) would block", c->outbuflen, c->name, c->hostname); return true; } else { -- 2.20.1