mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-12 18:29:04 +00:00
Extend debugging sample
--HG-- branch : feature-crashreport
This commit is contained in:
parent
a9dc1a4c68
commit
bbfc15c07a
1 changed files with 4 additions and 0 deletions
|
@ -19,9 +19,11 @@
|
||||||
|
|
||||||
// contains all debug features
|
// contains all debug features
|
||||||
#include <nel/misc/debug.h>
|
#include <nel/misc/debug.h>
|
||||||
|
#include <nel/misc/report.h>
|
||||||
|
|
||||||
void repeatederror()
|
void repeatederror()
|
||||||
{
|
{
|
||||||
|
// hit always ignore to surpress this error for the duration of the program
|
||||||
nlassert(false && "hit always ignore");
|
nlassert(false && "hit always ignore");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -43,6 +45,7 @@ int main(int /* argc */, char ** /* argv */)
|
||||||
|
|
||||||
// enable the crash report tool
|
// enable the crash report tool
|
||||||
NLMISC::INelContext::getInstance().setWindowedApplication(true);
|
NLMISC::INelContext::getInstance().setWindowedApplication(true);
|
||||||
|
NLMISC::setReportPostUrl("http://ryzomcore.org/crash_report/");
|
||||||
|
|
||||||
// display debug information, that will be skipped in release mode.
|
// display debug information, that will be skipped in release mode.
|
||||||
nldebug("nldebug() %d", 1);
|
nldebug("nldebug() %d", 1);
|
||||||
|
@ -75,6 +78,7 @@ int main(int /* argc */, char ** /* argv */)
|
||||||
nlinfo("nlerror() generated an EFatalError exception, just ignore it");
|
nlinfo("nlerror() generated an EFatalError exception, just ignore it");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// keep repeating the same error
|
||||||
for (int i = 0; i < 32; ++i)
|
for (int i = 0; i < 32; ++i)
|
||||||
repeatederror();
|
repeatederror();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue