diff --git a/server/src/socket.c b/server/src/socket.c index 3a7ad6a8c..fded7353b 100644 --- a/server/src/socket.c +++ b/server/src/socket.c @@ -204,7 +204,7 @@ int socket_read(struct node *n, struct msg *pool, int poolsize, int first, int c else if (bytes < 0) serror("Failed recv"); - debug(10, "Received packet of %u bytes: %u samples a %u values per sample", bytes, cnt, (bytes / cnt) / 4 - 4); + debug(17, "Received packet of %u bytes: %u samples a %u values per sample", bytes, cnt, (bytes / cnt) / 4 - 4); for (int i = 0; i < cnt; i++) { struct msg *m = &pool[(first+poolsize+i) % poolsize];