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
a33890ee
Commit
a33890ee
authored
Mar 10, 2025
by
yanzg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复异常提醒,从而正确的跟踪异常信息
parent
beb10a57
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
8 deletions
+11
-8
LogLocal.java
yzg-util-db/src/main/java/com/yanzuoguang/log/LogLocal.java
+11
-8
No files found.
yzg-util-db/src/main/java/com/yanzuoguang/log/LogLocal.java
View file @
a33890ee
...
...
@@ -12,6 +12,8 @@ import java.util.Arrays;
import
java.util.Collection
;
import
java.util.List
;
import
static
com
.
yanzuoguang
.
log
.
LogInfoVo
.
STATUS_WAIT
;
/**
* 当前线程日志编写
*
...
...
@@ -72,6 +74,15 @@ public class LogLocal implements ThreadNext.Next, InitializingBean {
if
(
log
==
null
||
StringHelper
.
isEmpty
(
log
.
getLogId
()))
{
return
;
}
Timeout
<
LogInfoVo
>
timeout
;
// 判断是否延时结果
boolean
isMaxTime
=
log
.
getStatus
()
==
STATUS_WAIT
;
if
(
isMaxTime
)
{
timeout
=
cache
.
get
(
log
.
getLogId
());
}
else
{
timeout
=
cache
.
remove
(
log
.
getLogId
());
}
// 日志请求不记录,防止死循环递归
boolean
isLog
=
isLog
(
log
.
getTag
(),
log
.
getUrl
());
// 全路径
...
...
@@ -80,14 +91,6 @@ public class LogLocal implements ThreadNext.Next, InitializingBean {
long
time
=
System
.
currentTimeMillis
()
-
log
.
getStart
();
// 记录请求时间
logCountTime
.
finish
(
log
);
Timeout
<
LogInfoVo
>
timeout
;
// 判断是否延时结果
boolean
isMaxTime
=
StringHelper
.
compare
(
status
,
MAX_TIME
);
if
(
isMaxTime
)
{
timeout
=
cache
.
get
(
log
.
getLogId
());
}
else
{
timeout
=
cache
.
remove
(
log
.
getLogId
());
}
logBase
.
addLog
(
log
);
}
...
...
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