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
The OtlpLoggingAutoConfiguration is annotated with @ConditionalOnClass({ ConditionalOnEnabledLoggingExport.class}). This means the logging export feature cannot be enabled without "spring-boot-actuator-autoconfigure" on the classpath.
We should remove this artificial limitation.
Currently, we don't have a micrometer-logging module because this abstraction does not exist in Micrometer. This feature is only supported for OTLP right now so moving the ConditionalOnEnabledLoggingExport condition to the "spring-boot-opentelemetry" makes the most sense right now.