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

use same log output for starting nodes and paths

This commit is contained in:
Steffen Vogel 2017-04-26 10:56:02 +02:00
parent c1b0d65f5a
commit bd91508b4c

View file

@ -318,7 +318,7 @@ int path_start(struct path *p)
assert(p->state == STATE_CHECKED);
info("Starting path: %s (#hooks=%zu)", path_name(p), list_length(&p->hooks));
info("Starting path %s: #hooks=%zu, #destinations=%zu", path_name(p), list_length(&p->hooks), list_length(&p->destinations));
for (size_t i = 0; i < list_length(&p->hooks); i++) {
struct hook *h = list_at(&p->hooks, i);