Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
engine-class-work
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
liuchengjiu
engine-class-work
Commits
c64b6e96
Commit
c64b6e96
authored
Jul 20, 2023
by
Ryan Loong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update log级别和格式
parent
8b376868
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
56 additions
and
56 deletions
+56
-56
application.yml
server-admin-api/src/main/resources/application.yml
+5
-5
application-dev.yml
server-all/src/main/resources/application-dev.yml
+9
-9
application-prod.yml
server-all/src/main/resources/application-prod.yml
+8
-8
application-test.yml
server-all/src/main/resources/application-test.yml
+8
-8
application.yml
server-all/src/main/resources/application.yml
+8
-8
application.yml
server-core/src/main/resources/application.yml
+4
-4
application.yml
server-db/src/main/resources/application.yml
+4
-4
logback.xml
server-db/src/main/resources/logback.xml
+5
-5
application.yml
server-wx-api/src/main/resources/application.yml
+5
-5
No files found.
server-admin-api/src/main/resources/application.yml
View file @
c64b6e96
...
...
@@ -9,8 +9,8 @@ server:
logging
:
level
:
root
:
ERROR
org.springframework
:
ERROR
org.mybatis
:
ERROR
cn.exploring.engine.server.admin
:
DEBUG
cn.exploring.engine.server
:
ERROR
root
:
error
org.springframework
:
error
org.mybatis
:
error
cn.exploring.engine.server.admin
:
info
cn.exploring.engine.server
:
info
server-all/src/main/resources/application-dev.yml
View file @
c64b6e96
...
...
@@ -10,15 +10,15 @@ server:
logging
:
level
:
root
:
ERROR
org.springframework
:
ERROR
org.mybatis
:
ERROR
cn.exploring.engine.server.db.dao
:
ERROR
cn.exploring.engine.server.core
:
ERROR
cn.exploring.engine.server.db
:
ERROR
cn.exploring.engine.server.admin
:
ERROR
cn.exploring.engine.server.wx
:
ERROR
cn.exploring.engine.server
:
ERROR
root
:
error
org.springframework
:
error
org.mybatis
:
error
cn.exploring.engine.server.db.dao
:
info
cn.exploring.engine.server.core
:
info
cn.exploring.engine.server.db
:
info
cn.exploring.engine.server.admin
:
info
cn.exploring.engine.server.wx
:
info
cn.exploring.engine.server
:
info
# redis相关配置
projectRedis
:
...
...
server-all/src/main/resources/application-prod.yml
View file @
c64b6e96
...
...
@@ -10,14 +10,14 @@ server:
logging
:
level
:
root
:
ERROR
org.springframework
:
ERROR
org.mybatis
:
ERROR
cn.exploring.engine.server.core
:
ERROR
cn.exploring.engine.server.db
:
ERROR
cn.exploring.engine.server.admin
:
ERROR
cn.exploring.engine.server.wx
:
ERROR
cn.exploring.engine.server
:
ERROR
root
:
error
org.springframework
:
error
org.mybatis
:
error
cn.exploring.engine.server.core
:
info
cn.exploring.engine.server.db
:
info
cn.exploring.engine.server.admin
:
info
cn.exploring.engine.server.wx
:
info
cn.exploring.engine.server
:
info
# redis相关配置
projectRedis
:
...
...
server-all/src/main/resources/application-test.yml
View file @
c64b6e96
...
...
@@ -10,14 +10,14 @@ server:
logging
:
level
:
root
:
ERROR
org.springframework
:
ERROR
org.mybatis
:
ERROR
cn.exploring.engine.server.core
:
ERROR
cn.exploring.engine.server.db
:
ERROR
cn.exploring.engine.server.admin
:
ERROR
cn.exploring.engine.server.wx
:
ERROR
cn.exploring.engine.server
:
ERROR
root
:
error
org.springframework
:
error
org.mybatis
:
error
cn.exploring.engine.server.core
:
info
cn.exploring.engine.server.db
:
info
cn.exploring.engine.server.admin
:
info
cn.exploring.engine.server.wx
:
info
cn.exploring.engine.server
:
info
# redis相关配置
projectRedis
:
...
...
server-all/src/main/resources/application.yml
View file @
c64b6e96
...
...
@@ -16,14 +16,14 @@ server:
logging
:
level
:
root
:
ERROR
org.springframework
:
ERROR
org.mybatis
:
ERROR
cn.exploring.engine.server.core
:
ERROR
cn.exploring.engine.server.db
:
ERROR
cn.exploring.engine.server.admin
:
ERROR
cn.exploring.engine.server.wx
:
ERROR
cn.exploring.engine.server
:
ERROR
root
:
error
org.springframework
:
error
org.mybatis
:
error
cn.exploring.engine.server.core
:
info
cn.exploring.engine.server.db
:
info
cn.exploring.engine.server.admin
:
info
cn.exploring.engine.server.wx
:
info
cn.exploring.engine.server
:
info
mybatis
:
configuration
:
...
...
server-core/src/main/resources/application.yml
View file @
c64b6e96
...
...
@@ -18,7 +18,7 @@ spring:
logging
:
level
:
root
:
ERROR
org.springframework
:
ERROR
org.mybatis
:
ERROR
cn.exploring.engine.server.core
:
DEBUG
root
:
error
org.springframework
:
error
org.mybatis
:
error
cn.exploring.engine.server.core
:
info
server-db/src/main/resources/application.yml
View file @
c64b6e96
...
...
@@ -6,10 +6,10 @@ spring:
logging
:
level
:
root
:
ERROR
org.springframework
:
ERROR
org.mybatis
:
ERROR
cn.exploring.engine.server.db
:
DEBUG
root
:
error
org.springframework
:
error
org.mybatis
:
error
cn.exploring.engine.server.db
:
error
bean-searcher
:
sql
:
...
...
server-db/src/main/resources/logback.xml
View file @
c64b6e96
...
...
@@ -9,7 +9,7 @@
<appender
name=
"STDOUT"
class=
"ch.qos.logback.core.ConsoleAppender"
>
<layout
class=
"ch.qos.logback.classic.PatternLayout"
>
<pattern>
%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger --
* %msg%n *--
</pattern>
<pattern>
%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger --
%msg%n
</pattern>
</layout>
</appender>
...
...
@@ -20,7 +20,7 @@
<totalSizeCap>
3GB
</totalSizeCap>
</rollingPolicy>
<encoder>
<pattern>
%-4relative [%thread] %-5level %logger{35} %d --
* %msg%n *--
</pattern>
<pattern>
%-4relative [%thread] %-5level %logger{35} %d --
%msg%n
</pattern>
</encoder>
</appender>
...
...
@@ -31,7 +31,7 @@
<totalSizeCap>
3GB
</totalSizeCap>
</rollingPolicy>
<encoder>
<pattern>
%-4relative [%thread] %-5level %logger{35} %d --
* %msg%n *--
</pattern>
<pattern>
%-4relative [%thread] %-5level %logger{35} %d --
%msg%n
</pattern>
</encoder>
</appender>
...
...
@@ -42,7 +42,7 @@
<totalSizeCap>
3GB
</totalSizeCap>
</rollingPolicy>
<encoder>
<pattern>
%-4relative [%thread] %-5level %logger{35} %d --
* %msg%n *--
</pattern>
<pattern>
%-4relative [%thread] %-5level %logger{35} %d --
%msg%n
</pattern>
</encoder>
</appender>
...
...
@@ -59,7 +59,7 @@
<totalSizeCap>
3GB
</totalSizeCap>
</rollingPolicy>
<encoder>
<pattern>
%-4relative [%thread] %-5level %logger{35} %d --
* %msg%n *--
</pattern>
<pattern>
%-4relative [%thread] %-5level %logger{35} %d --
%msg%n
</pattern>
</encoder>
</appender>
...
...
server-wx-api/src/main/resources/application.yml
View file @
c64b6e96
...
...
@@ -9,9 +9,9 @@ server:
logging
:
level
:
root
:
ERROR
org.springframework
:
ERROR
org.mybatis
:
ERROR
cn.exploring.engine.server.wx
:
DEBUG
cn.exploring.engine.server
:
ERROR
root
:
error
org.springframework
:
error
org.mybatis
:
error
cn.exploring.engine.server.wx
:
info
cn.exploring.engine.server
:
info
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment