]> git.meshlink.io Git - meshlink/commitdiff
log level adjustments
authorNiklas Hofmann <niklas.hofmann@everbase.net>
Sat, 9 Aug 2014 12:05:25 +0000 (14:05 +0200)
committerNiklas Hofmann <niklas.hofmann@everbase.net>
Sat, 9 Aug 2014 12:05:25 +0000 (14:05 +0200)
src/net_packet.c
src/route.c

index fced36b82721f2e6d52dd007341dc069ae88908f..467156aac5a36facabc85e299ae6df235a8787cf 100644 (file)
@@ -560,11 +560,11 @@ void send_packet(meshlink_handle_t *mesh, node_t *n, vpn_packet_t *packet) {
                return;
        }
 
-       logger(mesh, MESHLINK_ERROR, "Sending packet of %d bytes to %s (%s)",
+       logger(mesh, MESHLINK_DEBUG, "Sending packet of %d bytes to %s (%s)",
                           packet->len, n->name, n->hostname);
 
        if(!n->status.reachable) {
-               logger(mesh, MESHLINK_INFO, "Node %s (%s) is not reachable",
+               logger(mesh, MESHLINK_WARNING, "Node %s (%s) is not reachable",
                                   n->name, n->hostname);
                return;
        }
index 751ebc3362be109417c2ed736f349255c7ecf700..f451d8e35ebb8229d987746b970b17de4d55049c 100644 (file)
@@ -42,7 +42,7 @@ void route(meshlink_handle_t *mesh, node_t *source, vpn_packet_t *packet) {
        node_t *via = NULL;
        meshlink_packethdr_t *hdr = (meshlink_packethdr_t *) packet->data;
        owner = lookup_node(mesh, (char *)hdr->destination);
-       logger(mesh, MESHLINK_WARNING, "Routing packet from: %s . To: %s \n", hdr->source, hdr->destination);
+       logger(mesh, MESHLINK_DEBUG, "Routing packet from \"%s\" to \"%s\"\n", hdr->source, hdr->destination);
 
        //Check Lenght
        if(!checklength(source, packet, (sizeof(meshlink_packethdr_t))))
@@ -56,7 +56,7 @@ void route(meshlink_handle_t *mesh, node_t *source, vpn_packet_t *packet) {
        }
 
        if(owner == mesh->self) {
-               logger(mesh, MESHLINK_WARNING, "I received a packet for me with payload: %s \n", packet->data + sizeof *hdr);
+               logger(mesh, MESHLINK_DEBUG, "I received a packet for me with payload: %s \n", packet->data + sizeof *hdr);
                if(mesh->receive_cb)
                        mesh->receive_cb(mesh, (meshlink_node_t *)source, packet->data + sizeof *hdr, packet->len - sizeof *hdr);
                return;