You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After the upgrade i have a problem with converter classes which looks like:
INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.access.common.PatternLayoutEncoder] for [encoder] property
10:51:05,922 |-ERROR in ch.qos.logback.core.pattern.parser.Compiler@12323a9d - There is no conversion class registered for conversion word [h]
10:51:05,922 |-ERROR in ch.qos.logback.core.pattern.parser.Compiler@12323a9d - [h] is not a valid conversion word
10:51:05,922 |-ERROR in ch.qos.logback.core.pattern.parser.Compiler@12323a9d - There is no conversion class registered for conversion word [l]
10:51:05,922 |-ERROR in ch.qos.logback.core.pattern.parser.Compiler@12323a9d - [l] is not a valid conversion word
10:51:05,922 |-ERROR in ch.qos.logback.core.pattern.parser.Compiler@12323a9d - There is no conversion class registered for conversion word [u]
10:51:05,922 |-ERROR in ch.qos.logback.core.pattern.parser.Compiler@12323a9d - [u] is not a valid conversion word
10:51:05,922 |-ERROR in ch.qos.logback.core.pattern.parser.Compiler@12323a9d - There is no conversion class registered for conversion word [t]
10:51:05,922 |-ERROR in ch.qos.logback.core.pattern.parser.Compiler@12323a9d - [t] is not a valid conversion word
10:51:05,922 |-ERROR in ch.qos.logback.core.pattern.parser.Compiler@12323a9d - There is no conversion class registered for conversion word [r]
10:51:05,922 |-ERROR in ch.qos.logback.core.pattern.parser.Compiler@12323a9d - [r] is not a valid conversion word
10:51:05,922 |-ERROR in ch.qos.logback.core.pattern.parser.Compiler@12323a9d - There is no conversion class registered for conversion word [s]
10:51:05,922 |-ERROR in ch.qos.logback.core.pattern.parser.Compiler@12323a9d - [s] is not a valid conversion word
10:51:05,922 |-ERROR in ch.qos.logback.core.pattern.parser.Compiler@12323a9d - There is no conversion class registered for conversion word [b]
10:51:05,922 |-ERROR in ch.qos.logback.core.pattern.parser.Compiler@12323a9d - [b] is not a valid conversion word
and
ERROR in ch.qos.logback.core.pattern.parser.Compiler@7cca6100 - There is no conversion class registered for conversion word [clientHost]
10:51:05,958 |-ERROR in ch.qos.logback.core.pattern.parser.Compiler@7cca6100 - [clientHost] is not a valid conversion word
10:51:05,958 |-ERROR in net.logstash.logback.composite.accessevent.AccessEventPatternJsonProvider@6f10be7d - Invalid [pattern]: Invalid JSON property '//client-host' (was '%clientHost'): Failed to interpret '%clientHost' conversion word. See previous error statuses for more information. net.logstash.logback.pattern.AbstractJsonPatternParser$JsonPatternException: Invalid JSON property '//client-host' (was '%clientHost'): Failed to interpret '%clientHost' conversion word. See previous error statuses for more information.
at net.logstash.logback.pattern.AbstractJsonPatternParser$JsonPatternException: Invalid JSON property '//client-host' (was '%clientHost'): Failed to interpret '%clientHost'
Before the upgrade in ch.qos.logback.core.pattern.parser.Compiler 69 converter classes were loaded. After the upgrade 0. The old conversion classes don't exist any more. It seems they've got a new package - ch.qos.logback.access.pattern vs. ch.qos.logback.access.common.pattern. But in this package are not all necessary converter classes(only 31)
Is there a known way how to get the necessary converter classes with the upgraded dependencies? Is there a necessary additional dependency?
The text was updated successfully, but these errors were encountered:
A colleague of me fixed the problem. The logback default for logback-core was 1.5.12. ext['logback.version'] = '1.5.16'
fixed the problem. Was the same problem like in #885
@spellsleeper Spring Boot team released 3.4.2 just 4 hours ago where they bumped logback.version from 1.5.12 to 1.5.16, so the version override won't be needed anymore.
I tried to upgrade
to(artifacts were moved)
After the upgrade i have a problem with converter classes which looks like:
and
Before the upgrade in ch.qos.logback.core.pattern.parser.Compiler 69 converter classes were loaded. After the upgrade 0. The old conversion classes don't exist any more. It seems they've got a new package - ch.qos.logback.access.pattern vs. ch.qos.logback.access.common.pattern. But in this package are not all necessary converter classes(only 31)
Is there a known way how to get the necessary converter classes with the upgraded dependencies? Is there a necessary additional dependency?
The text was updated successfully, but these errors were encountered: