mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
cubeb: fix logged source file paths
This commit is contained in:
parent
f0eb7b42e2
commit
0a15d2fcec
2 changed files with 10 additions and 5 deletions
|
@ -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{};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue