summaryrefslogtreecommitdiffstats
path: root/common/synchronizer.cpp
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2018-07-27 13:18:53 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2018-07-27 13:18:53 +0200
commit1855b8356e4c427efdba4c932fa9f984e6ae5a43 (patch)
tree383f1e2bf61c300961089d567c02b5b287c94a80 /common/synchronizer.cpp
parent095677379922ebd54e9491908ab9e50bf520110e (diff)
downloadsink-1855b8356e4c427efdba4c932fa9f984e6ae5a43.tar.gz
sink-1855b8356e4c427efdba4c932fa9f984e6ae5a43.zip
Shouldn't be a warning if we expect to run into it.
We always run into that when starting a resource.
Diffstat (limited to 'common/synchronizer.cpp')
-rw-r--r--common/synchronizer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/synchronizer.cpp b/common/synchronizer.cpp
index 41ab1e9..71091a6 100644
--- a/common/synchronizer.cpp
+++ b/common/synchronizer.cpp
@@ -499,7 +499,7 @@ void Synchronizer::setBusy(bool busy, const QString &reason, const QByteArray re
499KAsync::Job<void> Synchronizer::processSyncQueue() 499KAsync::Job<void> Synchronizer::processSyncQueue()
500{ 500{
501 if (secret().isEmpty()) { 501 if (secret().isEmpty()) {
502 SinkWarningCtx(mLogCtx) << "Secret not available but required."; 502 SinkLogCtx(mLogCtx) << "Secret not available but required.";
503 emitNotification(Notification::Warning, ApplicationDomain::SyncError, "Secret is not available.", {}, {}); 503 emitNotification(Notification::Warning, ApplicationDomain::SyncError, "Secret is not available.", {}, {});
504 return KAsync::null<void>(); 504 return KAsync::null<void>();
505 } 505 }