Skip to content

Commit

Permalink
feat: 增加微信登录功能
Browse files Browse the repository at this point in the history
  • Loading branch information
fengyw committed May 28, 2024
1 parent f8cf689 commit 1b2fc38
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
14 changes: 7 additions & 7 deletions roncoo-education-common/roncoo-education-common-log/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@
<name>roncoo-education-common-log</name>

<dependencies>
<!--graylog-->
<dependency>
<groupId>de.siegmar</groupId>
<artifactId>logback-gelf</artifactId>
<version>4.0.2</version>
</dependency>

<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
Expand All @@ -31,12 +38,5 @@
<groupId>org.slf4j</groupId>
<artifactId>jul-to-slf4j</artifactId>
</dependency>

<!--graylog-->
<dependency>
<groupId>de.siegmar</groupId>
<artifactId>logback-gelf</artifactId>
<version>4.0.2</version>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<springProperty name="springApplicationName" source="spring.application.name" defaultValue="education"/>
<springProperty name="FILENAME" source="management.endpoint.logfile.external-file" defaultValue="/tmp/education/info.log"/>
<springProperty name="FILENAME" source="management.endpoint.logfile.external-file"
defaultValue="/tmp/education/info.log"/>
<springProperty name="FILEMAXHISTORY" source="logging.logback.rollingpolicy.max-history" defaultValue="7"/>
<springProperty name="PATTERNFILE" source="logging.pattern.file" defaultValue="%-12(%d{yyyy-MM-dd HH:mm:ss.SSS}) |-%-5level [%thread] %c [%L] -| %msg%n"/>
<springProperty name="PATTERNFILE" source="logging.pattern.file"
defaultValue="%-12(%d{yyyy-MM-dd HH:mm:ss.SSS}) |-%-5level [%thread] %c [%L] -| %msg%n"/>

<appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
Expand Down Expand Up @@ -61,7 +63,6 @@
<root level="info">
<appender-ref ref="CONSOLE"/>
<appender-ref ref="FILE"/>
<appender-ref ref="GELF"/>
</root>
</springProfile>
</configuration>

0 comments on commit 1b2fc38

Please sign in to comment.