Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cloud-platform
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
youjj
cloud-platform
Commits
df094ae2
Commit
df094ae2
authored
Aug 19, 2019
by
jiaorz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
日志打印
parent
eacf2b87
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
AcceptFilter.java
...m/github/wxiaoqi/security/common/filter/AcceptFilter.java
+1
-1
DenyFilter.java
...com/github/wxiaoqi/security/common/filter/DenyFilter.java
+1
-1
No files found.
ace-common/src/main/java/com/github/wxiaoqi/security/common/filter/AcceptFilter.java
View file @
df094ae2
...
...
@@ -7,7 +7,7 @@ import ch.qos.logback.core.spi.FilterReply;
public
class
AcceptFilter
extends
Filter
<
ILoggingEvent
>
{
@Override
public
FilterReply
decide
(
ILoggingEvent
event
)
{
if
(
event
.
getLoggerName
().
startsWith
(
"com.xxfc.platform"
)
||
event
.
getLoggerName
().
startsWith
(
"com.github.wxiaoqi"
))
{
if
(
event
.
getLoggerName
().
startsWith
(
"com.xxfc.platform"
)
||
event
.
getLoggerName
().
startsWith
(
"com.github.wxiaoqi"
)
||
event
.
getLoggerName
().
contains
(
"Exception"
)
)
{
return
FilterReply
.
ACCEPT
;
}
else
{
return
FilterReply
.
DENY
;
...
...
ace-common/src/main/java/com/github/wxiaoqi/security/common/filter/DenyFilter.java
View file @
df094ae2
...
...
@@ -7,7 +7,7 @@ import ch.qos.logback.core.spi.FilterReply;
public
class
DenyFilter
extends
Filter
<
ILoggingEvent
>
{
@Override
public
FilterReply
decide
(
ILoggingEvent
event
)
{
if
(
event
.
getLoggerName
().
startsWith
(
"com.alibaba.nacos"
)
||
event
.
getLoggerName
().
startsWith
(
"com.xxfc.platform"
)
||
event
.
getLoggerName
().
startsWith
(
"com.github.wxiaoqi"
))
{
if
(
event
.
getLoggerName
().
startsWith
(
"com.alibaba.nacos"
)
||
event
.
getLoggerName
().
startsWith
(
"com.xxfc.platform"
)
||
event
.
getLoggerName
().
startsWith
(
"com.github.wxiaoqi"
)
||
event
.
getLoggerName
().
contains
(
"Exception"
)
)
{
return
FilterReply
.
DENY
;
}
else
{
return
FilterReply
.
ACCEPT
;
...
...
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