本文介绍了Spring Data R2DBC 中查询参数的日志值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在 Spring 数据中R2DBC 我可以使用
logging.level.org.springframework.data.r2dbc=DEBUG
在application.properties
中.
但是,这不会记录绑定为查询参数的实际值.
However, this doesn't log the actual values that are bound as query parameters.
如何在 Spring Data R2DBC 中记录查询参数的实际值?
How can I log the actual values of query parameters in Spring Data R2DBC?
推荐答案
这对我有用:
logging:
level:
io.r2dbc.postgresql.QUERY: DEBUG # for queries
io.r2dbc.postgresql.PARAM: DEBUG # for parameters
我找到了 这里
这篇关于Spring Data R2DBC 中查询参数的日志值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!