2
3
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-14 02:27:40 -04:00

Add plStatusLog to the list of converted interface, in order to fix my log output dir screw-up

This commit is contained in:
2013-01-19 17:06:27 -08:00
parent ad5495ca45
commit 1ce553ac80
6 changed files with 89 additions and 222 deletions

View File

@ -462,7 +462,7 @@ PF_CONSOLE_BASE_CMD( PrevStatusLog, "", "Cycles backwards through the status log
PF_CONSOLE_BASE_CMD( ShowStatusLog, "string logName", "Advances the status log display to the given log" )
{
plStatusLogMgr::GetInstance().SetCurrStatusLog( params[ 0 ] );
plStatusLogMgr::GetInstance().SetCurrStatusLog(static_cast<const char *>(params[0]));
}
#endif // LIMIT_CONSOLE_COMMANDS
@ -481,7 +481,7 @@ PF_CONSOLE_BASE_CMD( EnableLogging, "", "Turns on logging" )
PF_CONSOLE_BASE_CMD( DumpLogs, "string folderName", "Dumps all current logs to the folder specified, relative to the log folder" )
{
plStatusLogMgr::GetInstance().DumpLogs( params[ 0 ] );
plStatusLogMgr::GetInstance().DumpLogs(static_cast<const char *>(params[0]));
}