diff options
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/test')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/test/command/CopyErrorCommand.kt | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/test/command/CopyErrorCommand.kt b/src/main/java/at/hannibal2/skyhanni/test/command/CopyErrorCommand.kt index 6820deba7..c2a35027d 100644 --- a/src/main/java/at/hannibal2/skyhanni/test/command/CopyErrorCommand.kt +++ b/src/main/java/at/hannibal2/skyhanni/test/command/CopyErrorCommand.kt @@ -31,13 +31,14 @@ object CopyErrorCommand { if (cache.getIfPresent(pair) != null) return cache.put(pair, Unit) - val errorMessage = error.toString() - val stackTrace = error.stackTrace.asList().joinToString("\n") + val stackTrace = error.stackTraceToString() val randomId = UUID.randomUUID().toString() - errorMessages[randomId] = "```$errorMessage\nCaused at:\n$stackTrace```" + + errorMessages[randomId] = + "```\nSkyHanni ${SkyHanniMod.version}: $message\n$stackTrace```" LorenzUtils.clickableChat( - "§cSkyHanni ${SkyHanniMod.version} $message. Click here to copy the error into the clipboard.", + "§c[SkyHanni ${SkyHanniMod.version}]: $message. Click here to copy the error into the clipboard.", "shcopyerror $randomId" ) } |
