Hi @deniswsrosa,
I tried applying query logging with springboot 2.4 and springdata couchbase 4.1.1 with couchbase 7 beta server following your article.
But queries are not logged.Below is my logback-spring.xml and I have logback-classic.2.3 jar in classpath.
<configuration debug="true"> <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <pattern>%d{HH:mm:ss} [%thread] %-5level %logger{36} - %msg%n </pattern> </encoder> </appender> <logger name="org.springframework.data.couchbase.repository.query" level="DEBUG" /> <root level="info"> <appender-ref ref="STDOUT" /> </root> </configuration>
What could have gone wrong here?
Thanks,
Isuru