Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions src/Logger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
}
Loading