1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

decreasing verbosity of socket

This commit is contained in:
Steffen Vogel 2015-10-12 17:29:51 +02:00
parent 504e64a7c8
commit d91b76c61a

View file

@ -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];