Index: sources/storage/Logger.cpp =================================================================== diff -u -ra3030123e885fb9f22dea5839c4e988896a257e4 -r5215e145a0f26a20c99e3f10af6ac8a9c3b67383 --- sources/storage/Logger.cpp (.../Logger.cpp) (revision a3030123e885fb9f22dea5839c4e988896a257e4) +++ sources/storage/Logger.cpp (.../Logger.cpp) (revision 5215e145a0f26a20c99e3f10af6ac8a9c3b67383) @@ -168,12 +168,13 @@ // coco begin validated: It can only happen if the file system is readonly 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 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 } } +// coco end + /*! * \brief Logger::setLogBasePath * \details Tries to the set the log path to the default log path (Log_Base_Path_Name) @@ -183,6 +184,7 @@ */ void Logger::setLogBasePath(bool vUseApplicationDirPath) { + // coco begin validated: Has been validated manually if (vUseApplicationDirPath) { _dir.setPath(qApp->applicationDirPath()); // Don't use LOG_XXXXX, At this moment Logger has not been initialized yet @@ -192,6 +194,7 @@ _dir.setPath(SDCard_Base_Path_Name); } } +// coco end /*! * \brief Logger::setLogPath