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

changed logging messages

git-svn-id: https://zerberus.eonerc.rwth-aachen.de:8443/svn/s2ss/trunk@224 8ec27952-4edc-4aab-86aa-e87bb2611832
This commit is contained in:
Steffen Vogel 2014-09-09 09:03:30 +00:00
parent e90662d5f6
commit 248d940bd3

View file

@ -93,7 +93,7 @@ static void start()
for (struct path *p = paths; p; p = p->next) {
path_start(p);
info("Starting path: %12s " GRN("=>") " %-12s",
info("Path started: %12s " GRN("=>") " %-12s",
p->in->name, p->out->name);
}
}
@ -104,7 +104,7 @@ static void stop()
for (struct path *p = paths; p; p = p->next) {
path_stop(p);
info("Stopping path: %12s " RED("=>") " %-12s",
info("Path stopped: %12s " RED("=>") " %-12s",
p->in->name, p->out->name);
}