Fixed: #990 Add possibility to set and get log directory

hg/feature/sound
kervala 15 years ago
parent 95c62c13fe
commit 4e334e85b7

@ -89,6 +89,9 @@ void destroyDebug();
// call this if you want to change the dir of the log.log file
void changeLogDirectory(const std::string &dir);
// call this if you want to get the dir of the log.log file
std::string getLogDirectory();
// internal breakpoint window
void enterBreakpoint (const char *message);

@ -93,6 +93,7 @@ namespace NLMISC
bool DisableNLDebug= false;
NLMISC::CVariablePtr<bool> _DisableNLDebug("nel","DisableNLDebug","Disables generation and output of nldebug logs (no code associated with the log generation is executed)",&DisableNLDebug,true);
static std::string LogPath = "";
//bool DebugNeedAssert = false;
//bool NoAssert = false;
@ -1116,10 +1117,16 @@ void getCallStackAndLog (string &result, sint /* skipNFirst */)
void changeLogDirectory(const std::string &dir)
{
if (fd == NULL)return;
string p = CPath::standardizePath(dir) + "log.log";
LogPath = CPath::standardizePath(dir);
string p = LogPath + "log.log";
fd->setParam(p);
}
std::string getLogDirectory()
{
return LogPath;
}
// You should not call this, unless you know what you're trying to do (it kills debug/log)!
// Destroys debug environment, to clear up the memleak log.
// NeL context must be deleted immediately after debug destroyed,
@ -1196,7 +1203,8 @@ void createDebug (const char *logPath, bool logInFile, bool eraseLastLog)
string fn;
if (logPath != NULL)
{
fn += logPath;
LogPath = CPath::standardizePath(logPath);
fn += LogPath;
}
else
{

Loading…
Cancel
Save