mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
be less verbose in logging
This commit is contained in:
parent
78fdadfbba
commit
3eee38becb
2 changed files with 2 additions and 2 deletions
|
@ -206,7 +206,7 @@ int signal_generator_read(struct node *n, struct sample *smps[], unsigned cnt, u
|
|||
/* Block until 1/p->rate seconds elapsed */
|
||||
steps = task_wait(&s->task);
|
||||
if (steps > 1 && s->monitor_missed) {
|
||||
warning("Missed steps: %u", steps-1);
|
||||
debug(5, "Missed steps: %u", steps-1);
|
||||
s->missed_steps += steps-1;
|
||||
}
|
||||
|
||||
|
|
|
@ -103,7 +103,7 @@ void path_destination_write(struct path_destination *pd, struct path *p)
|
|||
return;
|
||||
}
|
||||
else if (sent < allocated)
|
||||
p->logger->warn("Partial write to node {}: written={}, expected={}", node_name(pd->node), sent, allocated);
|
||||
p->logger->debug("Partial write to node {}: written={}, expected={}", node_name(pd->node), sent, allocated);
|
||||
|
||||
released = sample_decref_many(smps, release);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue