Results 24 comments of Peter Kotula

Hi @987Nabil, thank you very much for report, based on your inputs i made following example app (in zio-logging/examples) there are deps: ```scala "ch.qos.logback" % "logback-classic" % "1.2.11", "net.logstash.logback" %...

@987Nabil did you check it? Thanks.

Hi @domdorn, with ZIO 2, logging interface is in zio core library, you can use [ZTestLogger](https://github.com/zio/zio/blob/series/2.x/test/shared/src/main/scala/zio/test/ZTestLogger.scala) to test log output, please check that, and let us know if this is...

Hi @domdorn, please let me know if this solving your problem, thank you very much.

it is look like, it is also related to https://github.com/zio/zio-prelude/issues/821 and https://github.com/zio/izumi-reflect/issues/309

may be related to https://github.com/zio/zio-prelude/pull/949

@Ellzord new zio prelude `1.0.0-RC16` was released, and it fixed problem ```scala package zio.logging.example import zio.logging.{LogAnnotation, LogFormat, consoleJson} import zio.prelude.Newtype import zio.{ExitCode, Runtime, Scope, ZIO, ZIOAppDefault, _} import java.util.UUID object...

i am working on documentation and some examples

Hi @Ellzord, `LogFormat.cause` was added, but for now, it is not part of `LogFormat.default` you can create own one ``` val logFormatWithCause = LogFormat.default |-| LogFormat.cause ``` let us know...