iisuru
January 14, 2021, 4:01am
1
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.
When working with Spring Data using its standard DSL, the generated query is not very clear, which makes it more difficult to create the right index to it.
Est. reading time: 1 minute
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
There should be an “application.properties” file in your sourcetree.
Add this into it: logging.level.org.springframework.data.couchbase.repository.query: DEBUG
Hi @iisuru !
Can you please try logging the org.springframework.data.couchbase.core.query package instead? Let me know if that works.
The Spring Data Couchbase 4 SDK has been almost completely rewritten while compared with the previous version, so this specific item might have been left out. In both cases, please feel free to follow this issue and comment on it if you need anything else:
Add Debug logging of couchbase operations - query statements etc. · Issue #1045 · spring-projects/spring-data-couchbase · GitHub .
iisuru
January 16, 2021, 2:23am
4
@deniswsrosa ,
It does not work even after " org.springframework.data.couchbase.core.query" package is adapted.
I will follow this topic "Add Debug logging of couchbase operations - query statements etc. · Issue #1045 · spring-projects/spring-data-couchbase · GitHub "
I will wait till above github issue progresses since no progress has been made so far.
Thanks
Isuru
Are there any progress with this issue?
Thanks, Raman.
It works now:
logging:
level:
org.springframework.data.couchbase.core: TRACE
2 Likes