Index: sources/storage/Logger.cpp =================================================================== diff -u -rc8b2c06141831ba2908323138d94dec0ccc0d402 -r3d0a160e4e8c0348c688ed5efe4d86dc66121e6b --- sources/storage/Logger.cpp (.../Logger.cpp) (revision c8b2c06141831ba2908323138d94dec0ccc0d402) +++ sources/storage/Logger.cpp (.../Logger.cpp) (revision 3d0a160e4e8c0348c688ed5efe4d86dc66121e6b) @@ -167,12 +167,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) @@ -182,6 +183,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 @@ -191,6 +193,7 @@ _dir.setPath(SDCard_Base_Path_Name); } } +// coco end /*! * \brief Logger::setLogPath