commit | 9d4b02092d1e775831c7a72e9b46c2e5fe1162c4 | [log] [tgz] |
---|---|---|
author | Aleksei.Cherepanov <aleksei.cherepanov@jetbrains.com> | Fri Oct 13 10:05:54 2023 +0200 |
committer | Aleksei.Cherepanov <aleksei.cherepanov@jetbrains.com> | Fri Oct 13 10:05:54 2023 +0200 |
tree | 2f02f3324b9225030edc95d47c2c9df42bf998f8 | |
parent | 8becfb25ebb494a87f698e5218d0a52e12e235fa [diff] |
Fix stacktrace printing
diff --git a/build-common/src/org/jetbrains/kotlin/incremental/storage/BasicMapsOwner.kt b/build-common/src/org/jetbrains/kotlin/incremental/storage/BasicMapsOwner.kt index 1198294..09c1704 100644 --- a/build-common/src/org/jetbrains/kotlin/incremental/storage/BasicMapsOwner.kt +++ b/build-common/src/org/jetbrains/kotlin/incremental/storage/BasicMapsOwner.kt
@@ -66,7 +66,7 @@ val message = actionExceptions.entries.joinToString("\n") { entry -> val storageFileName = entry.key val exception = entry.value - "Error for action '$storageFileName': ${exception.stackTrace}" + "Error for action '$storageFileName': ${exception.stackTraceToString()}" } val desc = "Could not $actionName incremental caches in $cachesDir: {${message}}"