Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHannah von Reth <hannah.vonreth@owncloud.com>2021-09-24 11:50:29 +0300
committerHannah von Reth <vonreth@kde.org>2021-09-27 09:44:55 +0300
commitcf06a96255d1a82575bf1931a12127d3e88d04c1 (patch)
tree96909a5456bb520db347e8593d744e97429ef128 /src/libsync
parentde7e0093ec07117d86a1d5f3b95df763a4c770db (diff)
Cleanup and some assrts to ensure assumptions
Diffstat (limited to 'src/libsync')
-rw-r--r--src/libsync/discoveryphase.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsync/discoveryphase.cpp b/src/libsync/discoveryphase.cpp
index 41fa78e29..2a6c40071 100644
--- a/src/libsync/discoveryphase.cpp
+++ b/src/libsync/discoveryphase.cpp
@@ -260,7 +260,7 @@ void DiscoverySingleLocalDirectoryJob::run() {
auto dh = csync_vio_local_opendir(localPath);
if (!dh) {
- qCInfo(lcDiscovery) << "Error while opening directory" << (localPath) << errno;
+ qCCritical(lcDiscovery) << "Error while opening directory" << (localPath) << errno;
QString errorString = tr("Error while opening directory %1").arg(localPath);
if (errno == EACCES) {
errorString = tr("Directory not accessible on client, permission denied");