Index: sources/storage/Logger.cpp =================================================================== diff -u -rc36f8432854c8ab42f71b76da826b50912822cf7 -r7e4af0df6b719d54ee9ec824f17ea022faab4d2e --- sources/storage/Logger.cpp (.../Logger.cpp) (revision c36f8432854c8ab42f71b76da826b50912822cf7) +++ sources/storage/Logger.cpp (.../Logger.cpp) (revision 7e4af0df6b719d54ee9ec824f17ea022faab4d2e) @@ -617,6 +617,11 @@ auto logFile = { vLogType }; // Is mostly used for the txr files which are in separate partition. for ( const auto &iType : ( vLogType == eLogFiles ? logFiles : logFile ) ) { + // The Application does not have access to remove the CloudSync logs, + // therefore sends CloudSync a message with expected used percent of the log files, + // to remove the logs. + if ( iType == eLogCloud ) { emit didRetentionLogCS(_logTypeMaxUsageLimit[iType]); continue; } + QString mCSource = _logPathNames [iType]; QString mCExtension = _logFileNameExt[iType]; // DEBUG: qDebug() << "@" << mCSource << mLogFileFilter << mCExtension << iType << _logTypeMaxUsageLimit[iType];