diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-07-27 13:18:53 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-07-27 13:18:53 +0200 |
commit | 1855b8356e4c427efdba4c932fa9f984e6ae5a43 (patch) | |
tree | 383f1e2bf61c300961089d567c02b5b287c94a80 | |
parent | 095677379922ebd54e9491908ab9e50bf520110e (diff) | |
download | sink-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.
-rw-r--r-- | common/synchronizer.cpp | 2 |
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 | |||
499 | KAsync::Job<void> Synchronizer::processSyncQueue() | 499 | KAsync::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 | } |