diff --git a/base/src/main/kotlin/de/staropensource/engine/base/implementation/logging/crashcategory/InfoCrashCategory.kt b/base/src/main/kotlin/de/staropensource/engine/base/implementation/logging/crashcategory/InfoCrashCategory.kt index d654ce3..156f530 100644 --- a/base/src/main/kotlin/de/staropensource/engine/base/implementation/logging/crashcategory/InfoCrashCategory.kt +++ b/base/src/main/kotlin/de/staropensource/engine/base/implementation/logging/crashcategory/InfoCrashCategory.kt @@ -67,7 +67,7 @@ class InfoCrashCategory private constructor() : CrashCategory { Pair("Method", call.origin.methodName), Pair("Line", call.origin.lineNumber), )), - Pair("Channel", call.channel), + Pair("Channel", "'${call.channel}'"), Pair("Fatal", if (fatal) "yes" else "no"), Pair("Message", call.message), Pair("Stacktrace", if (throwable == null) "Not available." else StackTraceUtils.stacktraceRecursive(throwable)),