// Management · RimWorld Mod
Better Stacktraces
Better Stacktraces After looking at too many stacktraces to count, I decided to make this to make developers' lives just a bit easier.
Better Stacktraces
After looking at too many stacktraces to count, I decided to make this to make developers' lives just a bit easier. It's also useful for users who run into errors. They can report more useful information to developers. Also, you'll know exactly which mod the error is from. No more guessing based of namespaces and method names only.New!
Introducing XML error detection. When there's XML in an error, this mod will tell you the potential sources for that error. It also can pick up errors that don't have XML in them specifically, but that related to XML in some way, such as cross reference errors.What's a Stacktrace?
A stacktrace is the long string of information that you see when you look at a message, warning, or error in the log. Developers use this information to debug the source of errors in their mods. That information comes from Unity, but useful information is stripped out when it finally gets to your log.What Does it Do?
This overrides the default RimWorld stacktrace with my own. Features include:- Mod name or source
- Assembly name
- Method parameter types and names
- File names*
- Line numbers*
- XML errors
Compatibility
- Visual Exceptions
To Do
- Add support for more error types