Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
meibuyu-micro
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
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
without authentication
meibuyu-micro
Commits
e5fc1ff4
Commit
e5fc1ff4
authored
Feb 11, 2022
by
Liu lu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
日志格式化
parent
0d0bde63
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
AsyncCoroutineAspect.php
src/Aspect/AsyncCoroutineAspect.php
+7
-1
LogTraceQueue.php
src/Handler/LogTrace/LogTraceQueue.php
+2
-2
No files found.
src/Aspect/AsyncCoroutineAspect.php
View file @
e5fc1ff4
...
...
@@ -31,8 +31,14 @@ class AsyncCoroutineAspect extends AbstractAspect
// 在调用前进行某些处理
return
Coroutine
::
create
(
function
()
use
(
$proceedingJoinPoint
){
LogTraceHandler
::
recordProcess
(
'投递到子协程任务,id:'
.
Coroutine
::
id
()
.
' ,类:'
.
$proceedingJoinPoint
->
className
.
' ,方法:'
.
$proceedingJoinPoint
->
methodName
,
true
);
$result
=
$proceedingJoinPoint
->
process
();
LogTraceHandler
::
recordProcess
(
'投递到子协程任务,id:'
.
Coroutine
::
id
());
LogTraceHandler
::
recordProcess
(
$result
,
true
);
});
...
...
src/Handler/LogTrace/LogTraceQueue.php
View file @
e5fc1ff4
...
...
@@ -28,9 +28,9 @@ class LogTraceQueue extends RedisQueueBatchHandler
$updateArr
[
$arr
[
'request_id'
]][
'is_completed'
]
=
$arr
[
'is_completed'
];
$process_info
=
isset
(
$updateArr
[
$arr
[
'request_id'
]][
'process_info'
])
?
$updateArr
[
$arr
[
'request_id'
]][
'process_info'
]
:
''
;
(
$updateArr
[
$arr
[
'request_id'
]][
'process_info'
]
.
"
\n\n
"
)
:
''
;
$updateArr
[
$arr
[
'request_id'
]][
'process_info'
]
=
$process_info
.
"
\n\n
"
.
$arr
[
'process_info'
];
$updateArr
[
$arr
[
'request_id'
]][
'process_info'
]
=
$process_info
.
$arr
[
'process_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