Merge pull request #52 from QuasarApp/loggerPath
All checks were successful
buildbot/DocsGenerator Build finished.
buildbot/LinuxCMakeBuilderQt6 Build finished.

added getter of log file path
This commit is contained in:
Andrei Yankovich 2025-02-19 13:55:10 +01:00 committed by GitHub
commit 4eb85b8cbb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 10 additions and 0 deletions

View File

@ -107,4 +107,8 @@ void QALogger::init() {
}
QString QALogger::getLogFilePath() {
return *_logFile;
}
}

View File

@ -55,6 +55,12 @@ public:
*/
void init();
/**
* @brief setVerboseLevel This method set verbose level of the logger.
* @param lvl This is new verbose level.
*/
static QString getLogFilePath();
};
}
#endif // QALOGGER_H