summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Logging/LogManager.h
diff options
context:
space:
mode:
authorAdmiral H. Curtiss <pikachu025@gmail.com>2022-07-18 19:05:08 +0200
committerGitHub <noreply@github.com>2022-07-18 19:05:08 +0200
commitdd67d5fbc4aeffe78daa7b1697ebf39bdd7ccd3e (patch)
tree6228c1e6698e9ca9e850f7fba37d38e021ce5195 /Source/Core/Common/Logging/LogManager.h
parentf43fa8a2a8bbe4cd5a5edaca7ee943916357d983 (diff)
parent28828435bbe56d959e0dc14938df6a32169fad91 (diff)
Merge pull request #10871 from shuffle2/logging
logging improvements
Diffstat (limited to 'Source/Core/Common/Logging/LogManager.h')
-rw-r--r--Source/Core/Common/Logging/LogManager.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/Core/Common/Logging/LogManager.h b/Source/Core/Common/Logging/LogManager.h
index be80835552..acda7f7fe1 100644
--- a/Source/Core/Common/Logging/LogManager.h
+++ b/Source/Core/Common/Logging/LogManager.h
@@ -39,6 +39,8 @@ public:
static void Shutdown();
void Log(LogLevel level, LogType type, const char* file, int line, const char* message);
+ void LogWithFullPath(LogLevel level, LogType type, const char* file, int line,
+ const char* message);
LogLevel GetLogLevel() const;
void SetLogLevel(LogLevel level);
@@ -73,9 +75,6 @@ private:
LogManager(LogManager&&) = delete;
LogManager& operator=(LogManager&&) = delete;
- void LogWithFullPath(LogLevel level, LogType type, const char* file, int line,
- const char* message);
-
LogLevel m_level;
EnumMap<LogContainer, LogType::WIIMOTE> m_log{};
std::array<LogListener*, LogListener::NUMBER_OF_LISTENERS> m_listeners{};