-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No Converter classes after logback-access upgrade #908
Comments
A colleague of me fixed the problem. The logback default for logback-core was 1.5.12. |
However, it would of course be nice if it worked without this workaround. It's the wrong default version in Spring Boot |
@spellsleeper Spring Boot team released 3.4.2 just 4 hours ago where they bumped |
When upgrading to Spring Boot 3.4.2, we got the following error
And our configuration looks like provider<LoggingEventPatternJsonProvider> {
isOmitEmptyFields = true
this.pattern = """
{
"type": "Service",
"name": "%mdc{component}",
"version": "%replace(%property{build.version}){'null',''}"
}
"""
} |
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: