this post was submitted on 03 Feb 2026
576 points (99.1% liked)
Programmer Humor
29403 readers
1416 users here now
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Rules
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Yeah Minecraft crash logs are notoriously hard to debug, part of it is caused by Mojang obfuscating the classes but also because java naturally produces verbose stack traces
I always think of Java as the absolute gold standard of stack traces. Sure, in any given debugging session I don't care about most of the stack. But across all sessions, I've used all parts of the trace and I wouldn't want anything elided.
JS is my least-favorite because it provides a stack-trace so I get tricked into thinking it'll be useful. But since it doesn't cross callbacks it provides no depth.