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
94b31584
Commit
94b31584
authored
Feb 22, 2022
by
Liu lu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
异步协程日志加入异常
parent
a119a36d
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
34 additions
and
25 deletions
+34
-25
AsyncCoroutineAspect.php
src/Aspect/AsyncCoroutineAspect.php
+17
-13
LogTraceAspect.php
src/Aspect/LogTraceAspect.php
+17
-11
LogTraceHandler.php
src/Handler/LogTrace/LogTraceHandler.php
+0
-1
No files found.
src/Aspect/AsyncCoroutineAspect.php
View file @
94b31584
...
@@ -31,6 +31,7 @@ class AsyncCoroutineAspect extends AbstractAspect
...
@@ -31,6 +31,7 @@ class AsyncCoroutineAspect extends AbstractAspect
// 在调用前进行某些处理
// 在调用前进行某些处理
return
Coroutine
::
create
(
function
()
use
(
$proceedingJoinPoint
){
return
Coroutine
::
create
(
function
()
use
(
$proceedingJoinPoint
){
try
{
LogTraceHandler
::
recordProcess
(
LogTraceHandler
::
recordProcess
(
'投递到子协程任务,id:'
.
Coroutine
::
id
()
'投递到子协程任务,id:'
.
Coroutine
::
id
()
.
' ,类:'
.
$proceedingJoinPoint
->
className
.
' ,类:'
.
$proceedingJoinPoint
->
className
...
@@ -44,6 +45,9 @@ class AsyncCoroutineAspect extends AbstractAspect
...
@@ -44,6 +45,9 @@ class AsyncCoroutineAspect extends AbstractAspect
'子协程任务id:'
.
Coroutine
::
id
()
.
'已完成,执行结果:'
.
'子协程任务id:'
.
Coroutine
::
id
()
.
'已完成,执行结果:'
.
json_encode
(
$result
),
true
json_encode
(
$result
),
true
);
);
}
catch
(
\Throwable
$exception
){
LogTraceHandler
::
recordProcess
(
$exception
,
true
);
}
});
});
...
...
src/Aspect/LogTraceAspect.php
View file @
94b31584
...
@@ -26,6 +26,7 @@ class LogTraceAspect extends AbstractAspect
...
@@ -26,6 +26,7 @@ class LogTraceAspect extends AbstractAspect
public
function
process
(
ProceedingJoinPoint
$proceedingJoinPoint
)
public
function
process
(
ProceedingJoinPoint
$proceedingJoinPoint
)
{
{
try
{
$originParams
=
[
$originParams
=
[
'called_params'
=>
$proceedingJoinPoint
->
getArguments
(),
'called_params'
=>
$proceedingJoinPoint
->
getArguments
(),
'http_params'
=>
make
(
RequestInterface
::
class
)
->
all
()
'http_params'
=>
make
(
RequestInterface
::
class
)
->
all
()
...
@@ -38,5 +39,10 @@ class LogTraceAspect extends AbstractAspect
...
@@ -38,5 +39,10 @@ class LogTraceAspect extends AbstractAspect
LogTraceHandler
::
recordProcess
(
'返回结果:'
.
json_encode
(
$result
));
LogTraceHandler
::
recordProcess
(
'返回结果:'
.
json_encode
(
$result
));
return
$result
;
return
$result
;
}
catch
(
\Throwable
$exception
){
LogTraceHandler
::
recordProcess
(
$exception
);
throw
$exception
;
}
}
}
}
}
\ No newline at end of file
src/Handler/LogTrace/LogTraceHandler.php
View file @
94b31584
...
@@ -76,7 +76,6 @@ class LogTraceHandler
...
@@ -76,7 +76,6 @@ class LogTraceHandler
/**
/**
* 程序执行完成标记结束
* 程序执行完成标记结束
* @throws \Exception
*/
*/
public
static
function
markComplete
()
public
static
function
markComplete
()
{
{
...
...
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