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.