Add an extension to the log filename (such as ".log")

Summary

The log file has no extension, it is currently OpenConnect-GUI:

src/FileLogger.cpp
Lines 23 to 27 in c6dbc503

#ifdef Q_OS_WIN
            QString("%1/%2").arg(m_logPath).arg(qApp->applicationName()).toStdWString(),
#else
            QString("%1/%2").arg(m_logPath).arg(qApp->applicationName()).toStdString(),
#endif

Version of the software

main branch

Possible fixes

Add .log or some other file extension to QString("%1/%2").