Added handling of comment decorators (skip, note) in sequence diagram comments (#194)

This commit is contained in:
Bartek Kryza
2023-10-21 17:07:28 +02:00
parent ddbfffbf23
commit 7f595b1c54
19 changed files with 403 additions and 45 deletions

View File

@@ -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");
}
}
}