Skip to content

Commit

Permalink
fix change cn log of sdk to english (#256)
Browse files Browse the repository at this point in the history
  • Loading branch information
TerrenceGee authored Apr 18, 2024
1 parent 00e3201 commit 86bfe87
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ private void runComponentTask(Channel channel, TaskParam<TaskComponentParam> tas
.build();
log.info("grpc PushTaskRequest :\n{}", request.toString());
PushTaskReply reply = runVMNodeGrpc(o -> o.submitTask(request),channel);
log.info("grpc结果:{}", reply.toString());
log.info("grpc result: {}", reply.toString());
if (reply.getRetCode()==0){
taskParam.setPartyCount(reply.getPartyCount());
if (taskParam.getOpenGetStatus()){
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ private void runPir(Channel channel, TaskParam<TaskPIRParam> param){
.setClientProcessedUpTo(22)
.build();
PushTaskReply reply = runVMNodeGrpc(o -> o.submitTask(request),channel);
log.info("grpc结果:"+reply);
log.info("grpc result:"+reply);
if (reply.getRetCode()==0){
param.setPartyCount(reply.getPartyCount());
if (param.getOpenGetStatus()){
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ private void runPsi(Channel channel, TaskParam<TaskPSIParam> param){
.setClientProcessedUpTo(22)
.build();
PushTaskReply reply = runVMNodeGrpc(o -> o.submitTask(request),channel);
log.info("grpc结果:"+reply);
log.info("grpc result: "+reply);
if (reply.getRetCode()==0){
param.setPartyCount(reply.getPartyCount());
if (param.getOpenGetStatus()){
Expand Down

0 comments on commit 86bfe87

Please sign in to comment.