diff --git a/src/Logger.cpp b/src/Logger.cpp index edb7cc3..ee4a281 100644 --- a/src/Logger.cpp +++ b/src/Logger.cpp @@ -279,10 +279,6 @@ void Logger::SetLoggingFlag(void) { std::cout << MODULE_NAME << " Logging " << ((loggingEnabled)?"ENABLED":"DISABLED") << std::endl; } -bool Logger::IsLoggingEnabled(void) { - return loggingEnabled; -} - void Logger::SetLogModuleName(void) { // Make sure the module name used for logging entries is all uppercase and 8 characters wide. moduleName = MODULE_NAME; @@ -418,3 +414,11 @@ std::string Logger::CreateTimestamp(bool appendMS, bool iso) { std::string Logger::GetLogFilePath() { return logFilePath; } + +bool Logger::IsLoggingEnabled(void) { + return loggingEnabled; +} + +LogLevel Logger::GetLogLevel(void) { + return logLevel; +}