Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
Y
yzg-util
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
YZG
yzg-util
Commits
426d1092
Commit
426d1092
authored
Mar 19, 2021
by
yanzg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
不记录系统日志
parent
8f98f5dc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
8 deletions
+18
-8
LogLocal.java
...oud/src/main/java/com/yanzuoguang/cloud/aop/LogLocal.java
+18
-8
No files found.
yzg-util-cloud/src/main/java/com/yanzuoguang/cloud/aop/LogLocal.java
View file @
426d1092
...
...
@@ -164,18 +164,28 @@ public class LogLocal implements ThreadNext.Next, InitializingBean {
/**
* 是否属于日志服务
*
* @param name
* @param url
* @param keys
* @return
*/
private
boolean
isLog
(
String
name
,
String
url
)
{
boolean
noFilter
=
applicationName
.
matches
(
notFilter
)
||
name
.
matches
(
notFilter
)
||
url
.
matches
(
notFilter
);
if
(
noFilter
)
{
private
boolean
isLog
(
String
...
keys
)
{
List
<
String
>
list
=
new
ArrayList
<>();
list
.
add
(
this
.
applicationName
);
for
(
String
item
:
keys
)
{
list
.
add
(
item
);
}
// 是否排除
boolean
notFilter
=
false
;
// 是否过滤
boolean
filter
=
false
;
for
(
String
item
:
list
)
{
String
lower
=
item
.
toLowerCase
();
notFilter
=
notFilter
||
lower
.
matches
(
this
.
notFilter
);
filter
=
filter
||
lower
.
matches
(
this
.
filter
);
}
if
(
notFilter
)
{
return
false
;
}
boolean
isLog
=
applicationName
.
matches
(
filter
)
||
name
.
matches
(
filter
)
||
url
.
matches
(
filter
);
return
isLog
;
return
filter
;
}
/**
...
...
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