stackparam
stackparam copied to clipboard
JVM agent to add method parameters to Java stack traces
Hi there, this agent is very helpful while developing applications. I'm currently using it with my Java 8 apps. Unfortunately, I'm in the progress of migration to Java 11 which...
This changes the displayed class name from `really.long.package.name.Class` to `r.l.p.n.Class` for classes that have not overridden Object.toString(). Also replaces literal newlines with `\n`.
I did this mostly as an exercise, thought I'd open a PR if you're interested but it's not clear to me that there's actually any benefit (to the contrary, it...
Thanks for writing this agent, its a great intro to JVMTI for would be tinkerers (like me!) I've tried out the agent in the Scala compiler. I've experienced a race...
Can the transmitted type be modified to improve performance? I found that the method call to `params_to_object_array` occupies almost half of the runtime.