Create BCLog::Logger::LogLevelsString() helper function

Co-authored-by: "Jon Atack <jon@atack.com>"
This commit is contained in:
klementtan
2022-08-18 13:56:36 +02:00
committed by Jon Atack
parent 8fe3457dbb
commit 9c7507bf76
2 changed files with 15 additions and 0 deletions

View File

@@ -186,6 +186,9 @@ namespace BCLog {
return Join(LogCategoriesList(), ", ", [&](const LogCategory& i) { return i.category; });
};
//! Returns a string with all user-selectable log levels.
std::string LogLevelsString() const;
bool DefaultShrinkDebugFile() const;
};