1
2
3
4
5
6
7
8
9
10
11
12
13
| # p6spy配置,文档 https://p6spy.readthedocs.io/en/latest/configandusage.html
| # 使用日志系统记录 sql
| appender=com.p6spy.engine.spy.appender.Slf4JLogger
| # 自定义日志打印
| logMessageFormat=cc.mrbird.febs.server.system.configure.P6spySqlFormatConfigure
| # 是否开启慢 SQL记录
| outagedetection=true
| # 慢 SQL记录标准 2 秒
| outagedetectioninterval=2
| # 开启过滤
| filter=true
| # 配置不打印的内容
| exclude=select 1
|
|