Index: sources/storage/Logger.cpp =================================================================== diff -u -r79e076cece4ba503be6c3834eb68d1e5cb1b882f -r4a67c01045f365be38f1a12a8572c0070d343e1e --- sources/storage/Logger.cpp (.../Logger.cpp) (revision 79e076cece4ba503be6c3834eb68d1e5cb1b882f) +++ sources/storage/Logger.cpp (.../Logger.cpp) (revision 4a67c01045f365be38f1a12a8572c0070d343e1e) @@ -76,7 +76,7 @@ initThread(vThread); return true; } -// coco end +// disabled coco end /*! * \brief Logger::postInit @@ -119,7 +119,7 @@ // it has been tested and works perfectly fine in normal run. quitThread(); // validated } -// coco end +// disabled coco end /*! * \brief Logger::initConnections @@ -164,7 +164,7 @@ _thread->start(); moveToThread(_thread); } -// coco end +// disabled coco end /*! * \brief Logger::quitThread * \details Moves this object to main thread to be handled by QApplication @@ -179,7 +179,7 @@ // runs in thread moveToThread(qApp->thread()); // validated } -// coco end +// disabled coco end void Logger::onLog(const QString &vContent, LogType vLogType, bool vTimestamp) { @@ -196,7 +196,7 @@ // disabled coco begin validated: It can only happen if the file system is read-only for any reason. // it has been tested and works perfectly fine in normal run. if (! setLogPath()) { // check and create log folders & if unsuccessful then - // coco end + // disabled coco end setLogBasePath(true); // try to use application folder setLogPath ( ); // check and create log folders // Note: it may require to check for write access regarding device setup } @@ -236,7 +236,7 @@ if ( ok && ! setLogPath(LogType::eLogTrtmt) ) ok = false; return ok; } -// coco end +// disabled coco end /*! * \brief Logger::setLogPath @@ -320,7 +320,7 @@ if (_enableConsoleOut) { qDebug().noquote() << mContent; } - // coco end + // disabled coco end } /*! @@ -348,7 +348,7 @@ mOSource = ""; return result >= 0; // refer to QProcess::execute(hit F1 on execute) doc. } -// coco end +// disabled coco end /*! * \brief Logger::concurrentExportLogs @@ -365,7 +365,7 @@ _exportLogsWatcher.setFuture(future); return true; } -// coco end +// disabled coco end /*! * \brief Logger::onExportLogs @@ -378,7 +378,7 @@ LOG_DEBUG(QString("Export Logs Ended: %1").arg(_exportLogsWatcher.result())); emit didExportLogs(); } -// coco end +// disabled coco end /*! * \brief Logger::removeLogs @@ -439,7 +439,7 @@ mOSource = ""; return removeCount; } -// coco end +// disabled coco end /*! * \brief Logger::concurrentRemoveLogs @@ -457,7 +457,7 @@ _removeLogsWatcher.setFuture(mFuture); return true; } -// coco end +// disabled coco end /*! * \brief Logger::onRemoveLogs @@ -470,7 +470,7 @@ LOG_DEBUG(tr("Remove Logs Ended: %1").arg(_removeLogsWatcher.result())); emit didRemoveLogs(false); } -// coco end +// disabled coco end /*! * \brief Logger::onSDCardSpaceChange @@ -495,7 +495,7 @@ concurrentRemoveLogs(); } } -// coco end +// disabled coco end /*! * \brief Logger::enableConsoleOut @@ -512,7 +512,7 @@ LOG_DEBUG("Console out Logging disabled"); } } -// coco end +// disabled coco end /*! * \brief Logger::logPath