From ea5d657e3177df33c306734e7516703fb60af101 Mon Sep 17 00:00:00 2001 From: 疯狂的狮子Li <15040126243@163.com> Date: 星期六, 11 五月 2024 19:52:33 +0800 Subject: [PATCH] fix 修复 三方账号可以被同一个用户多次绑定问题 --- ruoyi-extend/ruoyi-easyretry-server/src/main/resources/logback-plus.xml | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ruoyi-extend/ruoyi-easyretry-server/src/main/resources/logback-plus.xml b/ruoyi-extend/ruoyi-easyretry-server/src/main/resources/logback-plus.xml index cdd5451..bcd3abc 100644 --- a/ruoyi-extend/ruoyi-easyretry-server/src/main/resources/logback-plus.xml +++ b/ruoyi-extend/ruoyi-easyretry-server/src/main/resources/logback-plus.xml @@ -36,7 +36,7 @@ <appender name="file_info" class="ch.qos.logback.core.rolling.RollingFileAppender"> <file>${log.path}/info.log</file> <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy"> - <FileNamePattern>${log.base}/info.%d{yyyy-MM-dd}.log</FileNamePattern> + <FileNamePattern>${log.path}/info.%d{yyyy-MM-dd}.log</FileNamePattern> <MaxHistory>60</MaxHistory> </rollingPolicy> <encoder> @@ -52,7 +52,7 @@ <appender name="file_error" class="ch.qos.logback.core.rolling.RollingFileAppender"> <file>${log.path}/error.log</file> <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy"> - <FileNamePattern>${log.base}/error.%d{yyyy-MM-dd}.log + <FileNamePattern>${log.path}/error.%d{yyyy-MM-dd}.log </FileNamePattern> <MaxHistory>60</MaxHistory> </rollingPolicy> -- Gitblit v1.9.3