Asaf Peleg
10/03/2023, 1:06 AMch.qos.logback.classic.encoder.JsonEncoder
doesn't want to serialize kotlinx.datetime.LocalDateTime
It seems that the underlying encoder uses Jackson and I'm wondering if I have to pass something special to the encoder to make it work? Can't seem to find any info online about that and wondering if someone has run across this before. Same issue using the joda time equivalentsKyle
10/03/2023, 1:19 PMAsaf Peleg
10/03/2023, 2:00 PMkotlinx-serialization
thats built into logback encoder isn't it?Kyle
10/03/2023, 5:18 PMAsaf Peleg
10/03/2023, 5:36 PMMichael Strasser
10/06/2023, 2:38 AMAsaf Peleg
10/06/2023, 2:58 AMMichael Strasser
10/06/2023, 4:39 AMAsaf Peleg
10/06/2023, 5:00 AMMichael Strasser
10/06/2023, 5:05 AMLocalDateTime
it calls toString()
that renders in ISO8601 format.
(It uses KotlinX Serialization to parse JSON configuration files.)Asaf Peleg
10/06/2023, 3:50 PM