Added handling of comment decorators (skip, note) in sequence diagram comments (#194)
This commit is contained in:
@@ -445,10 +445,11 @@ void diagram::print() const
|
||||
const auto &to_participant = *participants_.at(message.to());
|
||||
|
||||
LOG_TRACE(" Message from={}, from_id={}, "
|
||||
"to={}, to_id={}, name={}, type={}",
|
||||
"to={}, to_id={}, name={}, type={}, comment={}",
|
||||
from_participant.full_name(false), from_participant.id(),
|
||||
to_participant.full_name(false), to_participant.id(),
|
||||
message.message_name(), to_string(message.type()));
|
||||
message.message_name(), to_string(message.type()),
|
||||
message.comment() ? message.comment().value() : "None");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user