Changed: Only display flushDebugStack messages if DisableNLDebug is not set
This commit is contained in:
parent
1ecdfcd6a2
commit
5060102810
1 changed files with 5 additions and 5 deletions
|
@ -154,15 +154,15 @@ void flushDebugStack(const std::string &title)
|
||||||
strTmp = toString("\n");
|
strTmp = toString("\n");
|
||||||
DebugFile.serialBuffer((uint8*)strTmp.c_str(), (uint)strTmp.size());
|
DebugFile.serialBuffer((uint8*)strTmp.c_str(), (uint)strTmp.size());
|
||||||
}
|
}
|
||||||
// No Output File -> nlwarning
|
// No Output File -> nldebug only if DisableNLDebug not set to true
|
||||||
else
|
else if (!DisableNLDebug)
|
||||||
{
|
{
|
||||||
nlwarning("%s", title.c_str());
|
nldebug("%s", title.c_str());
|
||||||
for(uint i=0; i<DebugStack.size(); ++i)
|
for(uint i=0; i<DebugStack.size(); ++i)
|
||||||
nlwarning(" %s", DebugStack[i].c_str());
|
nldebug(" %s", DebugStack[i].c_str());
|
||||||
|
|
||||||
// Empty line separator
|
// Empty line separator
|
||||||
nlwarning("");
|
nldebug("");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue