This is an automated email from the ASF dual-hosted git repository.

laurence pushed a commit to branch bug1839
in repository https://gitbox.apache.org/repos/asf/dubbo-go.git

commit 8c08d3926aff9b133a4455cf0dc9c670e2b7ecd9
Author: LaurenceLiZhixin <[email protected]>
AuthorDate: Wed Apr 20 15:42:14 2022 +0800

    Add logs
---
 protocol/dubbo3/dubbo3_invoker.go | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/protocol/dubbo3/dubbo3_invoker.go 
b/protocol/dubbo3/dubbo3_invoker.go
index b87c0de97..fac07baa2 100644
--- a/protocol/dubbo3/dubbo3_invoker.go
+++ b/protocol/dubbo3/dubbo3_invoker.go
@@ -202,6 +202,8 @@ func (di *DubboInvoker) Invoke(ctx context.Context, 
invocation protocol.Invocati
 
        methodName := invocation.MethodName()
        triAttachmentWithErr := di.client.Invoke(methodName, in, 
invocation.Reply())
+       logger.Debugf("Response tri AttachmentWithError = %+v", 
triAttachmentWithErr)
+       logger.Debugf("Response reply = %+v", invocation.Reply())
        result.Err = triAttachmentWithErr.GetError()
        result.Attrs = make(map[string]interface{})
        for k, v := range triAttachmentWithErr.GetAttachments() {

Reply via email to