Index: sources/storage/Logger.cpp =================================================================== diff -u -r73d6d02c19467735e92f7c451ca5d3b47a2a90e4 -rfc329c788fe9453983072bee937ccbc95b4ed6e4 --- sources/storage/Logger.cpp (.../Logger.cpp) (revision 73d6d02c19467735e92f7c451ca5d3b47a2a90e4) +++ sources/storage/Logger.cpp (.../Logger.cpp) (revision fc329c788fe9453983072bee937ccbc95b4ed6e4) @@ -205,15 +205,15 @@ /*! * \brief Logger::setLogBasePath * \details Tries to the set the log path to the default log path (Log_Base_Path_Name) - * Will set the application folder as the base log path if can't set the log path to the default. + * Will set the application folder as the base log path if cannot set the log path to the default. * Will log the event in that case. * \param vUseApplicationDirPath */ void Logger::setLogBasePath(bool vUseApplicationDirPath) { if (vUseApplicationDirPath) { _dir.setPath(qApp->applicationDirPath()); - // Don't use LOG_XXXXX, At this moment Logger has not been initialized yet + // Do not use LOG_XXXXX, At this moment Logger has not been initialized yet qDebug() << QString("Application path used for events logging (%1)").arg(_dir.path()); } else { @@ -243,7 +243,7 @@ * \details Sets the log path for the log type vLogType * Creates the folder if not exists. * \param vLogType - log type - * \return returns false if the path doesn't exist and folder can't be created. + * \return returns false if the path does not exist and folder cannot be created. */ bool Logger::setLogPath(LogType vLogType) {