diff --git a/base/src/main/kotlin/de/staropensource/engine/base/implementation/logging/formatbuilder/SOSLSv2FormatBuilder.kt b/base/src/main/kotlin/de/staropensource/engine/base/implementation/logging/formatbuilder/SOSLSv2FormatBuilder.kt index d0ff786..73ee57a 100644 --- a/base/src/main/kotlin/de/staropensource/engine/base/implementation/logging/formatbuilder/SOSLSv2FormatBuilder.kt +++ b/base/src/main/kotlin/de/staropensource/engine/base/implementation/logging/formatbuilder/SOSLSv2FormatBuilder.kt @@ -31,11 +31,14 @@ import kotlinx.datetime.LocalDateTime import kotlinx.datetime.toLocalDateTime /** - * Builds the format as specified - * in the [SOSLS v2](https://z.staropensource.de/spec-logging-v2) - * specification, which looks - * something like this: - * `[505ms] [03.10.1990 23:23:23] [INFO de.staropensource.engine.testapp.Main#sayHi~42] Hello World!` + * Builds the format as specified in the + * [SOSLS v2](https://z.staropensource.de/spec-logging-v2) + * specification. + * + * It looks like this: + * ```plain + * [505ms] [03.10.1990 23:23:23] [INFO de.staropensource.engine.testapp.Main#sayHi~42] Hello World! + * ``` * * @param call [Call] to build a format for * @since v1-alpha10