diff --git a/base/src/main/kotlin/de/staropensource/engine/base/implementable/logging/CrashCategory.kt b/base/src/main/kotlin/de/staropensource/engine/base/implementable/logging/CrashCategory.kt index 121db1a..889efa8 100644 --- a/base/src/main/kotlin/de/staropensource/engine/base/implementable/logging/CrashCategory.kt +++ b/base/src/main/kotlin/de/staropensource/engine/base/implementable/logging/CrashCategory.kt @@ -56,16 +56,16 @@ interface CrashCategory { * with `Map`. Any other * values will be ignored. * - * @param call [Call] metadata - * @param channelconf [ChannelSettings] instance or `null`. Use this to access [ChannelSettings.getSetting] - * @param throwable the [Throwable] which caused the crash - * @param fatal terminates the engine and application if `true` + * @param call [Call] metadata + * @param channelSettings [ChannelSettings] instance or `null`. Use this to access [ChannelSettings.getSetting] + * @param throwable the [Throwable] which caused the crash + * @param fatal terminates the engine and application if `true` * @return crash category items * @since v1-alpha10 */ fun execute( call: Call, - channelconf: ChannelSettings?, + channelSettings: ChannelSettings?, throwable: Throwable?, fatal: Boolean, ): LinkedHashMap 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 5f12d45..571f172 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 @@ -56,7 +56,7 @@ class InfoCrashCategory private constructor() : CrashCategory { override fun execute( call: Call, - channelconf: ChannelSettings?, + channelSettings: ChannelSettings?, throwable: Throwable?, fatal: Boolean, ): LinkedHashMap {