]> git.meshlink.io Git - meshlink/commitdiff
net_packet: trivial, adjust to logger to DEBUG
authorSaverio Proto <zioproto@gmail.com>
Sat, 9 Aug 2014 14:27:10 +0000 (16:27 +0200)
committerSaverio Proto <zioproto@gmail.com>
Sat, 9 Aug 2014 14:27:10 +0000 (16:27 +0200)
src/net_packet.c

index 467156aac5a36facabc85e299ae6df235a8787cf..ca43d62c65b2f5a903af276229c564ed270068b8 100644 (file)
@@ -132,7 +132,7 @@ static void send_mtu_probe_handler(event_loop_t *loop, void *data) {
                packet.len = len;
                n->status.broadcast = i >= 4 && n->mtuprobes <= 10 && n->prevedge;
 
-               logger(mesh, MESHLINK_INFO, "Sending MTU probe length %d to %s (%s)", len, n->name, n->hostname);
+               logger(mesh, MESHLINK_DEBUG, "Sending MTU probe length %d to %s (%s)", len, n->name, n->hostname);
 
                send_udppacket(mesh, n, &packet);
        }
@@ -163,7 +163,7 @@ void send_mtu_probe(meshlink_handle_t *mesh, node_t *n) {
 }
 
 static void mtu_probe_h(meshlink_handle_t *mesh, node_t *n, vpn_packet_t *packet, uint16_t len) {
-       logger(mesh, MESHLINK_INFO, "Got MTU probe length %d from %s (%s)", packet->len, n->name, n->hostname);
+       logger(mesh, MESHLINK_DEBUG, "Got MTU probe length %d from %s (%s)", packet->len, n->name, n->hostname);
 
        if(!packet->data[0]) {
                /* It's a probe request, send back a reply */