added getter of log file path

This commit is contained in:
Andrei Yankovich 2025-02-19 13:53:52 +01:00
parent 5d020006bb
commit 0ce9053539
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