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>2022-05-24 18:49:11 +0300
committerHannah von Reth <vonreth@kde.org>2022-05-27 13:35:58 +0300
commitcf9470d1df33656ca8d2db2b572ecd8dd394c2a5 (patch)
treebbfc8e5c8ee4e96939846c794bc74a3e510c85b9 /src/gui/owncloudgui.cpp
parent41e9d5b0b6774284d0d2a90983e14b74cf7329cb (diff)
Change the way the continous log files are created
We now only rotate the logs when the client is started or the log gets bigger than 100mb
Diffstat (limited to 'src/gui/owncloudgui.cpp')
-rw-r--r--src/gui/owncloudgui.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/gui/owncloudgui.cpp b/src/gui/owncloudgui.cpp
index 33d6b87ce..ec8212749 100644
--- a/src/gui/owncloudgui.cpp
+++ b/src/gui/owncloudgui.cpp
@@ -203,13 +203,6 @@ void ownCloudGui::slotSyncStateChange(Folder *folder)
qCInfo(lcApplication) << "Sync state changed for folder " << folder->remoteUrl().toString() << ": " << result.statusString();
- if (result.status() == SyncResult::Success
- || result.status() == SyncResult::Problem
- || result.status() == SyncResult::SyncAbortRequested
- || result.status() == SyncResult::Error) {
- Logger::instance()->enterNextLogFile();
- }
-
if (result.status() == SyncResult::NotYetStarted) {
_settingsDialog->slotRefreshActivity(folder->accountState());
}