mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-28 03:49:20 +03:00
LogDir: Go to new file on Problem/Abort too #6442
This commit is contained in:
parent
a7b7344659
commit
9319b6594e
1 changed files with 4 additions and 1 deletions
|
@ -203,7 +203,10 @@ void ownCloudGui::slotSyncStateChange(Folder *folder)
|
||||||
|
|
||||||
qCInfo(lcApplication) << "Sync state changed for folder " << folder->remoteUrl().toString() << ": " << result.statusString();
|
qCInfo(lcApplication) << "Sync state changed for folder " << folder->remoteUrl().toString() << ": " << result.statusString();
|
||||||
|
|
||||||
if (result.status() == SyncResult::Success || result.status() == SyncResult::Error) {
|
if (result.status() == SyncResult::Success
|
||||||
|
|| result.status() == SyncResult::Problem
|
||||||
|
|| result.status() == SyncResult::SyncAbortRequested
|
||||||
|
|| result.status() == SyncResult::Error) {
|
||||||
Logger::instance()->enterNextLogFile();
|
Logger::instance()->enterNextLogFile();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue