diff options
-rw-r--r-- | common/resourcefacade.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/resourcefacade.cpp b/common/resourcefacade.cpp index 32b508a..474e955 100644 --- a/common/resourcefacade.cpp +++ b/common/resourcefacade.cpp | |||
@@ -108,6 +108,7 @@ KAsync::Job<void> LocalStorageFacade<DomainType>::remove(const DomainType &domai | |||
108 | Warning() << "We need an \"identifier\" property to identify the entity to configure"; | 108 | Warning() << "We need an \"identifier\" property to identify the entity to configure"; |
109 | return; | 109 | return; |
110 | } | 110 | } |
111 | Trace() << "Removing: " << identifier; | ||
111 | mConfigStore.remove(identifier); | 112 | mConfigStore.remove(identifier); |
112 | sConfigNotifier.remove(QSharedPointer<DomainType>::create(domainObject)); | 113 | sConfigNotifier.remove(QSharedPointer<DomainType>::create(domainObject)); |
113 | }); | 114 | }); |
@@ -150,6 +151,7 @@ QPair<KAsync::Job<void>, typename Sink::ResultEmitter<typename DomainType::Ptr>: | |||
150 | Trace() << "Skipping due to filter."; | 151 | Trace() << "Skipping due to filter."; |
151 | continue; | 152 | continue; |
152 | } | 153 | } |
154 | Trace() << "Found match " << res; | ||
153 | resultProvider->add(readFromConfig(res, type)); | 155 | resultProvider->add(readFromConfig(res, type)); |
154 | } | 156 | } |
155 | if (query.liveQuery) { | 157 | if (query.liveQuery) { |