summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--common/domain/applicationdomaintype.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/common/domain/applicationdomaintype.cpp b/common/domain/applicationdomaintype.cpp
index c315e33..07dab3b 100644
--- a/common/domain/applicationdomaintype.cpp
+++ b/common/domain/applicationdomaintype.cpp
@@ -44,6 +44,9 @@ QDebug Sink::ApplicationDomain::operator<< (QDebug d, const Sink::ApplicationDom
44 }(); 44 }();
45 std::sort(properties.begin(), properties.end()); 45 std::sort(properties.begin(), properties.end());
46 d << " " << "Id: " << "\t" << type.identifier() << "\n"; 46 d << " " << "Id: " << "\t" << type.identifier() << "\n";
47 if (type.isAggregate()) {
48 d << " " << "AggregateIds: " << "\t" << type.aggregatedIds() << "\n";
49 }
47 d << " " << "Resource: " << "\t" << type.resourceInstanceIdentifier() << "\n"; 50 d << " " << "Resource: " << "\t" << type.resourceInstanceIdentifier() << "\n";
48 for (const auto &property : properties) { 51 for (const auto &property : properties) {
49 d << " " << property << "\t" << type.getProperty(property) << "\n"; 52 d << " " << property << "\t" << type.getProperty(property) << "\n";