mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-01-21 21:25:55 +00:00
Move default log file to g_Config.memCardDirectory/PSP/SYSTEM/Logs/ppsspp.log.
This commit is contained in:
parent
f85b4a4252
commit
a9a6e7b384
@ -95,7 +95,9 @@ LogManager::LogManager() {
|
||||
|
||||
// Remove file logging on small devices
|
||||
#if !defined(USING_GLES2) || defined(_DEBUG)
|
||||
fileLog_ = new FileLogListener(File::GetUserPath(F_MAINLOG_IDX).c_str());
|
||||
// No real need to make GetSysDirectory have an entry for this since only this constructor uses it..
|
||||
const std::string logFileName = g_Config.memCardDirectory + "PSP/SYSTEM/Logs/ppsspp.log";
|
||||
fileLog_ = new FileLogListener(logFileName.c_str());
|
||||
consoleLog_ = new ConsoleListener();
|
||||
debuggerLog_ = new DebuggerLogListener();
|
||||
#else
|
||||
|
Loading…
x
Reference in New Issue
Block a user