projects
/
tinc
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a25c055
)
Move logging of "would block" messages to debug level 4.
author
Guus Sliepen
<guus@tinc-vpn.org>
Sun, 28 May 2017 10:25:53 +0000
(12:25 +0200)
committer
Guus Sliepen
<guus@tinc-vpn.org>
Sun, 28 May 2017 10:25:53 +0000
(12:25 +0200)
src/meta.c
patch
|
blob
|
history
diff --git
a/src/meta.c
b/src/meta.c
index
09c063d
..
45f2762
100644
(file)
--- 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 {