GLDebugOutputHandler: dump stack on debug messages

This commit is contained in:
Kirill Vainer 2015-09-22 22:02:12 -04:00
parent aa54947ff3
commit 62186362a8

View File

@ -73,6 +73,7 @@ class LwjglGLDebugOutputHandler implements ARBDebugOutputCallback.Handler {
String severityStr = constMap.get(severity);
System.err.println(String.format(MESSAGE_FORMAT, id, sourceStr, typeStr, severityStr, message));
Thread.dumpStack();
}
}