In certain conditions, when rendering of a specification fails, Codegen log exception's stack trace to stdout. This happen through an ex.printStackTrace(); in the DefaultGenerator class. This print is ...
$ git grep -F 'e.printStackTrace' graylog2-plugin-interfaces/src/main/java/org/graylog2/plugin/inputs/transports/ThrottleableTransport.java: e.printStackTrace ...
Each JVM thread (a path of execution) is associated with a stack that’s created when the thread is created. This data structure is divided into frames, which are data structures associated with method ...