summaryrefslogtreecommitdiffstats
path: root/common/clientapi.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/clientapi.cpp')
-rw-r--r--common/clientapi.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/common/clientapi.cpp b/common/clientapi.cpp
index ba9ad27..e7ca99d 100644
--- a/common/clientapi.cpp
+++ b/common/clientapi.cpp
@@ -80,11 +80,12 @@ static QList<QByteArray> getResources(const QList<QByteArray> &resourceFilter, c
80template <class DomainType> 80template <class DomainType>
81QSharedPointer<QAbstractItemModel> Store::loadModel(Query query) 81QSharedPointer<QAbstractItemModel> Store::loadModel(Query query)
82{ 82{
83 Trace() << "Requested: " << query.requestedProperties; 83 Trace() << "Query: ";
84 Trace() << "Filter: " << query.propertyFilter; 84 Trace() << " Requested: " << query.requestedProperties;
85 Trace() << "Parent: " << query.parentProperty; 85 Trace() << " Filter: " << query.propertyFilter;
86 Trace() << "Ids: " << query.ids; 86 Trace() << " Parent: " << query.parentProperty;
87 Trace() << "IsLive: " << query.liveQuery; 87 Trace() << " Ids: " << query.ids;
88 Trace() << " IsLive: " << query.liveQuery;
88 auto model = QSharedPointer<ModelResult<DomainType, typename DomainType::Ptr> >::create(query, query.requestedProperties); 89 auto model = QSharedPointer<ModelResult<DomainType, typename DomainType::Ptr> >::create(query, query.requestedProperties);
89 90
90 //* Client defines lifetime of model 91 //* Client defines lifetime of model