Clarify and increase level of log message about MTU probes to unreachable nodes.
authorGuus Sliepen <guus@tinc-vpn.org>
Tue, 20 Oct 2009 20:39:07 +0000 (22:39 +0200)
committerGuus Sliepen <guus@tinc-vpn.org>
Tue, 20 Oct 2009 20:39:07 +0000 (22:39 +0200)
src/net_packet.c

index 7a73ef5..9b0e468 100644 (file)
@@ -72,7 +72,7 @@ void send_mtu_probe(node_t *n) {
        n->mtuevent = NULL;
 
        if(!n->status.reachable || !n->status.validkey) {
-               logger(LOG_DEBUG, "Trying to send MTU probe to unreachable node %s (%s)", n->name, n->hostname);
+               ifdebug(TRAFFIC) logger(LOG_INFO, "Trying to send MTU probe to unreachable or rekeying node %s (%s)", n->name, n->hostname);
                n->mtuprobes = 0;
                return;
        }