From: Guus Sliepen Date: Sun, 28 May 2017 10:25:53 +0000 (+0200) Subject: Move logging of "would block" messages to debug level 4. X-Git-Tag: release-1.0.32~6 X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=commitdiff_plain;h=19c0337c4cac78dc302d5a1f637dcad45785a6e3 Move logging of "would block" messages to debug level 4. --- 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 {