Browse Source

Fix typo in filelogger.cpp message

adaptive-webui-19844
Andrei Stepanov 7 years ago committed by GitHub
parent
commit
817aadd52d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/app/filelogger.cpp

2
src/app/filelogger.cpp

@ -165,7 +165,7 @@ void FileLogger::openLogFile() @@ -165,7 +165,7 @@ void FileLogger::openLogFile()
|| !m_logFile->setPermissions(QFile::ReadOwner | QFile::WriteOwner)) {
delete m_logFile;
m_logFile = nullptr;
Logger::instance()->addMessage(tr("An error occured while trying to open the log file. Logging to file is disabled."), Log::CRITICAL);
Logger::instance()->addMessage(tr("An error occurred while trying to open the log file. Logging to file is disabled."), Log::CRITICAL);
}
}

Loading…
Cancel
Save