diff options
| author | 2014-09-18 22:27:06 -0400 | |
|---|---|---|
| committer | 2014-09-18 22:27:06 -0400 | |
| commit | a9630a9d2b432bea7bdfef4aa462035b98b34517 (patch) | |
| tree | 258010943e989fc61a2a439ff15ead7ed3d11a6f /src/common/log_manager.cpp | |
| parent | Merge pull request #107 from lioncash/sprintf (diff) | |
| parent | Kernel: Implement the Close command for Archive, File and Directory. (diff) | |
| download | yuzu-a9630a9d2b432bea7bdfef4aa462035b98b34517.tar.gz yuzu-a9630a9d2b432bea7bdfef4aa462035b98b34517.tar.xz yuzu-a9630a9d2b432bea7bdfef4aa462035b98b34517.zip | |
Merge pull request #70 from linkmauve/master
Implement filesystem services, and the required kernel objects.
Diffstat (limited to 'src/common/log_manager.cpp')
| -rw-r--r-- | src/common/log_manager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/log_manager.cpp b/src/common/log_manager.cpp index 43346f279..28b72fa20 100644 --- a/src/common/log_manager.cpp +++ b/src/common/log_manager.cpp | |||
| @@ -75,7 +75,7 @@ LogManager::LogManager() | |||
| 75 | m_Log[LogTypes::MEMCARD_MANAGER] = new LogContainer("MemCard Manager", "MemCard Manager"); | 75 | m_Log[LogTypes::MEMCARD_MANAGER] = new LogContainer("MemCard Manager", "MemCard Manager"); |
| 76 | m_Log[LogTypes::NETPLAY] = new LogContainer("NETPLAY", "Netplay"); | 76 | m_Log[LogTypes::NETPLAY] = new LogContainer("NETPLAY", "Netplay"); |
| 77 | 77 | ||
| 78 | m_fileLog = new FileLogListener(File::GetUserPath(F_MAINLOG_IDX).c_str()); | 78 | m_fileLog = new FileLogListener(FileUtil::GetUserPath(F_MAINLOG_IDX).c_str()); |
| 79 | m_consoleLog = new ConsoleListener(); | 79 | m_consoleLog = new ConsoleListener(); |
| 80 | m_debuggerLog = new DebuggerLogListener(); | 80 | m_debuggerLog = new DebuggerLogListener(); |
| 81 | 81 | ||