Changed: Only display flushDebugStack messages if DisableNLDebug is not set

This commit is contained in:
kervala 2015-12-20 19:10:33 +01:00
parent 1ecdfcd6a2
commit 5060102810

View file

@ -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("");
} }
} }