mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
path: show if path is muxed in output
This commit is contained in:
parent
3f456f922b
commit
6a3e5d59af
1 changed files with 2 additions and 1 deletions
|
@ -602,7 +602,7 @@ int path_start(struct vpath *p)
|
|||
|
||||
p->logger->info("Starting path {}: #signals={}({}), #hooks={}, #sources={}, "
|
||||
"#destinations={}, mode={}, poll={}, mask={:b}, rate={}, "
|
||||
"enabled={}, reversed={}, queuelen={}, original_sequence_no={}",
|
||||
"enabled={}, reversed={}, muxed={}, queuelen={}, original_sequence_no={}",
|
||||
path_name(p),
|
||||
vlist_length(&p->signals),
|
||||
vlist_length(path_output_signals(p)),
|
||||
|
@ -615,6 +615,7 @@ int path_start(struct vpath *p)
|
|||
p->rate,
|
||||
path_is_enabled(p) ? "yes" : "no",
|
||||
path_is_reversed(p) ? "yes" : "no",
|
||||
path_is_muxed(p) ? "yes" : "no",
|
||||
p->queuelen,
|
||||
p->original_sequence_no ? "yes" : "no"
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue