From 45ad836a234fc0086dcf2608aeae546ad6ffdbd6 Mon Sep 17 00:00:00 2001
From: lmm <3386165318@qq.com>
Date: 星期二, 16 七月 2024 08:41:23 +0800
Subject: [PATCH] 回退
---
platformx-demo-biz/src/main/resources/logback-spring.xml | 94 +++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 94 insertions(+), 0 deletions(-)
diff --git a/platformx-demo-biz/src/main/resources/logback-spring.xml b/platformx-demo-biz/src/main/resources/logback-spring.xml
new file mode 100644
index 0000000..aa7b427
--- /dev/null
+++ b/platformx-demo-biz/src/main/resources/logback-spring.xml
@@ -0,0 +1,94 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ ~ Copyright (c) 2018-2025, platformx All rights reserved.
+ ~
+ ~ Redistribution and use in source and binary forms, with or without
+ ~ modification, are permitted provided that the following conditions are met:
+ ~
+ ~ Redistributions of source code must retain the above copyright notice,
+ ~ this list of conditions and the following disclaimer.
+ ~ Redistributions in binary form must reproduce the above copyright
+ ~ notice, this list of conditions and the following disclaimer in the
+ ~ documentation and/or other materials provided with the distribution.
+ ~ Neither the name of the pig4cloud.com developer nor the names of its
+ ~ contributors may be used to endorse or promote products derived from
+ ~ this software without specific prior written permission.
+ ~ Author: platformx
+ -->
+
+<!--
+ 灏忔妧宸�: 鍦ㄦ牴pom閲岄潰璁剧疆缁熶竴瀛樻斁璺緞锛岀粺涓�绠$悊鏂逛究缁存姢
+ <properties>
+ <log-path>/Users/platformx</log-path>
+ </properties>
+ 1. 鍏朵粬妯″潡鍔犳棩蹇楄緭鍑猴紝鐩存帴copy鏈枃浠舵斁鍦╮esources 鐩綍鍗冲彲
+ 2. 娉ㄦ剰淇敼 <property name="${log-path}/log.path" value=""/> 鐨剉alue妯″潡
+-->
+<configuration debug="false" scan="false">
+ <property name="log.path" value="logs/${project.artifactId}"/>
+ <!-- 褰╄壊鏃ュ織鏍煎紡 -->
+ <property name="CONSOLE_LOG_PATTERN"
+ value="${CONSOLE_LOG_PATTERN:-%clr(%d{yyyy-MM-dd HH:mm:ss.SSS}){faint} %clr(${LOG_LEVEL_PATTERN:-%5p}) %clr(${PID:- }){magenta} %clr(---){faint} %clr([%15.15t]){faint} %clr(%-40.40logger{39}){cyan} %clr(:){faint} %m%n${LOG_EXCEPTION_CONVERSION_WORD:-%wEx}}"/>
+ <!-- 褰╄壊鏃ュ織渚濊禆鐨勬覆鏌撶被 -->
+ <conversionRule conversionWord="clr" converterClass="org.springframework.boot.logging.logback.ColorConverter"/>
+ <conversionRule conversionWord="wex"
+ converterClass="org.springframework.boot.logging.logback.WhitespaceThrowableProxyConverter"/>
+ <conversionRule conversionWord="wEx"
+ converterClass="org.springframework.boot.logging.logback.ExtendedWhitespaceThrowableProxyConverter"/>
+ <!-- Console log output -->
+ <appender name="console" class="ch.qos.logback.core.ConsoleAppender">
+ <encoder>
+ <pattern>${CONSOLE_LOG_PATTERN}</pattern>
+ </encoder>
+ </appender>
+
+ <!-- Log file debug output -->
+ <appender name="debug" class="ch.qos.logback.core.rolling.RollingFileAppender">
+ <file>${log.path}/debug.log</file>
+ <rollingPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedRollingPolicy">
+ <fileNamePattern>${log.path}/%d{yyyy-MM, aux}/debug.%d{yyyy-MM-dd}.%i.log.gz</fileNamePattern>
+ <maxFileSize>50MB</maxFileSize>
+ <maxHistory>30</maxHistory>
+ </rollingPolicy>
+ <encoder>
+ <pattern>%date [%thread] %-5level [%logger{50}] %file:%line - %msg%n</pattern>
+ </encoder>
+ </appender>
+
+ <!-- Log file error output -->
+ <appender name="error" class="ch.qos.logback.core.rolling.RollingFileAppender">
+ <file>${log.path}/error.log</file>
+ <rollingPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedRollingPolicy">
+ <fileNamePattern>${log.path}/%d{yyyy-MM}/error.%d{yyyy-MM-dd}.%i.log.gz</fileNamePattern>
+ <maxFileSize>50MB</maxFileSize>
+ <maxHistory>30</maxHistory>
+ </rollingPolicy>
+ <encoder>
+ <pattern>%date [%thread] %-5level [%logger{50}] %file:%line - %msg%n</pattern>
+ </encoder>
+ <filter class="ch.qos.logback.classic.filter.ThresholdFilter">
+ <level>ERROR</level>
+ </filter>
+ </appender>
+
+ <logger name="org.activiti.engine.impl.db" level="DEBUG">
+ <appender-ref ref="debug"/>
+ </logger>
+
+ <!--nacos 蹇冭烦 INFO 灞忚斀-->
+ <logger name="com.alibaba.nacos" level="OFF">
+ <appender-ref ref="error"/>
+ </logger>
+
+ <!--AJ 楠岃瘉鐮両NFO 灞忚斀-->
+ <logger name="com.anji.captcha" level="OFF">
+ <appender-ref ref="error"/>
+ </logger>
+
+ <!-- Level: FATAL 0 ERROR 3 WARN 4 INFO 6 DEBUG 7 -->
+ <root level="INFO">
+ <appender-ref ref="console"/>
+ <appender-ref ref="debug"/>
+ <appender-ref ref="error"/>
+ </root>
+</configuration>
\ No newline at end of file
--
Gitblit v1.9.1