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

jimin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-seata-go.git


The following commit(s) were added to refs/heads/master by this push:
     new 190b3b95 optimize: correct time format (#902)
190b3b95 is described below

commit 190b3b95b49494aa433fafcdba785d1658a4d825
Author: ian <[email protected]>
AuthorDate: Mon Oct 27 10:44:31 2025 +0800

    optimize: correct time format (#902)
---
 pkg/integration/grpc/grpc_transaction_interceptor.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pkg/integration/grpc/grpc_transaction_interceptor.go 
b/pkg/integration/grpc/grpc_transaction_interceptor.go
index 5f4a7280..2cc0266f 100644
--- a/pkg/integration/grpc/grpc_transaction_interceptor.go
+++ b/pkg/integration/grpc/grpc_transaction_interceptor.go
@@ -46,7 +46,7 @@ func ClientTransactionInterceptor(ctx context.Context, method 
string, req, reply
        err := invoker(ctx, method, req, reply, cc, opts...)
        end := time.Now()
        log.Infof("RPC: %s, start time: %s, end time: %s, err: %v", method,
-               start.Format("Basic"), end.Format(time.RFC3339), err)
+               start.Format(time.RFC3339), end.Format(time.RFC3339), err)
        return err
 }
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to