4
0
mirror of https://github.com/QuasarApp/QuasarAppLib.git synced 2025-04-30 11:44:40 +00:00

Merge pull request from QuasarApp/loggerPath

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

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

@ -55,6 +55,12 @@ public:
*/ */
void init(); 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 #endif // QALOGGER_H