That stack traces are "spammy" is really a bug by itself in my opinion. Karnaggolem, maybe you could help us find out what's the problem? I have here a sample stack trace, but you can use your own:
- RuntimeException | Open
- Code: Select all
Forge Version: 1.6.5-r-1
Operating System: Windows 10 10.0 x86
Java Version: 1.8.0_151 Oracle Corporation
java.lang.RuntimeException: java.io.EOFException: Unexpected end of ZLIB input stream
at forge.quest.io.QuestDataIO.loadData(QuestDataIO.java:135)
at forge.control.FControl.initialize(FControl.java:233)
at forge.view.Main.main(Main.java:51)
Caused by: java.io.EOFException: Unexpected end of ZLIB input stream
at java.util.zip.InflaterInputStream.fill(Unknown Source)
at java.util.zip.InflaterInputStream.read(Unknown Source)
at java.util.zip.GZIPInputStream.read(Unknown Source)
at sun.nio.cs.StreamDecoder.readBytes(Unknown Source)
at sun.nio.cs.StreamDecoder.implRead(Unknown Source)
at sun.nio.cs.StreamDecoder.read(Unknown Source)
at java.io.InputStreamReader.read(Unknown Source)
at java.io.Reader.read(Unknown Source)
at forge.quest.io.QuestDataIO.loadData(QuestDataIO.java:109)
... 2 more
My guess is that things like "java.lang.RuntimeException" look too much like URLs. Does replacing the .s by _s work? I.e., this:
- RuntimeException | Open
- Code: Select all
Forge Version: 1.6.5-r-1
Operating System: Windows 10 10.0 x86
Java Version: 1.8.0_151 Oracle Corporation
java_lang_RuntimeException: java_io_EOFException: Unexpected end of ZLIB input stream
at forge_quest_io_QuestDataIO_loadData(QuestDataIO.java:135)
at forge_control_FControl_initialize(FControl.java:233)
at forge_view_Main_main(Main.java:51)
Caused by: java_io_EOFException: Unexpected end of ZLIB input stream
at java_util_zip_InflaterInputStream_fill(Unknown Source)
at java_util_zip_InflaterInputStream_read(Unknown Source)
at java_util_zip_GZIPInputStream_read(Unknown Source)
at sun_nio_cs_StreamDecoder_readBytes(Unknown Source)
at sun_nio_cs_StreamDecoder_implRead(Unknown Source)
at sun_nio_cs_StreamDecoder_read(Unknown Source)
at java_io_InputStreamReader_read(Unknown Source)
at java_io_Reader_read(Unknown Source)
at forge_quest_io_QuestDataIO_loadData(QuestDataIO.java:109)
... 2 more
If we find a non-spammy form, maybe the error report window could show the stack trace in that form in the first place...