a similar question has been asked and answered here. The solution is to set logging level from org.springframework.data.couchbase.repository.query
to DEBUG
:
logging:
level:
org.springframework.data.couchbase.repository.query: DEBUG
The difference in my case is that I'm using the reactive support and the bad boy above doesn't work. I also tried setting everything in org.springframework.data
to DEBUG and still can't see any queries in the logs.
Mu guess is that there is something special about reactive repositories which I'm missing. Any ideas are more than welcome!