diff --git a/qalogger.cpp b/qalogger.cpp index 2c29eaf..fc9c4c2 100644 --- a/qalogger.cpp +++ b/qalogger.cpp @@ -107,4 +107,8 @@ void QALogger::init() { } +QString QALogger::getLogFilePath() { + return *_logFile; +} + } diff --git a/qalogger.h b/qalogger.h index b78f868..f4b3dc9 100644 --- a/qalogger.h +++ b/qalogger.h @@ -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