We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 512ca91 commit b32726fCopy full SHA for b32726f
common/src/main/kotlin/com/lambda/plugin/PluginRegistry.kt
@@ -62,14 +62,10 @@ object PluginRegistry : Loadable {
62
63
loadMethod.invoke(loadInstance)
64
}.onFailure {
65
- val threadDump = Thread.getAllStackTraces().entries.joinToString("\n") {
66
- it.key.toString() + it.value.joinToString("\n") { "\tat $it" }
67
- }
68
-
69
loadingError.format(
70
file,
71
it.message,
72
- threadDump
+ it.stackTraceToString()
73
)
74
.split("\n")
75
.forEach(LOG::error)
0 commit comments