AlexStocks commented on code in PR #2858: URL: https://github.com/apache/dubbo-go/pull/2858#discussion_r2071643829
########## protocol/triple/client.go: ########## @@ -157,12 +158,16 @@ func newClientManager(url *common.URL) (*clientManager, error) { switch serialization { case constant.ProtobufSerialization: isIDL = true + logger.Debugf("Triple client manager use protobuf serializaition") case constant.JSONSerialization: isIDL = true + logger.Debugf("Triple client manager use protojson serializaition") cliOpts = append(cliOpts, tri.WithProtoJSON()) case constant.Hessian2Serialization: + logger.Debugf("Triple client manager use hessian2 serializaition") cliOpts = append(cliOpts, tri.WithHessian2()) case constant.MsgpackSerialization: + logger.Debugf("Triple client manager use msgpack serializaition") Review Comment: 上面这四条 log,我觉着应该是测试日志吧? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org For additional commands, e-mail: notifications-h...@dubbo.apache.org