Hi,
as the title says, once DatabaseManagementService starts, spring boot logs disappear.
Initially, I do get warning
SLF4J(W): Class path contains multiple SLF4J providers.
SLF4J(W): Found provider [ch.qos.logback.classic.spi.LogbackServiceProvider@121314f7]
SLF4J(W): Found provider [org.neo4j.server.logging.slf4j.SLF4JLogBridge@130c12b7]
SLF4J(W): See https://www.slf4j.org/codes.html#multiple_bindings for an explanation.
SLF4J(I): Actual provider is of type [ch.qos.logback.classic.spi.LogbackServiceProvider@121314f7]
that is easily solved with
<exclusion>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-slf4j-provider</artifactId>
</exclusion>
but does not get me my logs back.
Custom logging as explained in Controlling logging - Java Reference
does not help either - I do get neo4j logs printed, but spring boot logs are still gone.
Java 17, Neo4j 5.22, Boot 3.3.2.
Please advise.