aboutsummaryrefslogtreecommitdiffstats
path: root/grpc/grpc-client/src/main/java/org
diff options
context:
space:
mode:
Diffstat (limited to 'grpc/grpc-client/src/main/java/org')
-rw-r--r--grpc/grpc-client/src/main/java/org/open/infc/grpc/client/OpenInterfaceGrpcClient.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/grpc/grpc-client/src/main/java/org/open/infc/grpc/client/OpenInterfaceGrpcClient.java b/grpc/grpc-client/src/main/java/org/open/infc/grpc/client/OpenInterfaceGrpcClient.java
index e32110de..efc941f9 100644
--- a/grpc/grpc-client/src/main/java/org/open/infc/grpc/client/OpenInterfaceGrpcClient.java
+++ b/grpc/grpc-client/src/main/java/org/open/infc/grpc/client/OpenInterfaceGrpcClient.java
@@ -82,17 +82,17 @@ public class OpenInterfaceGrpcClient {
}
public Output invoke(Input input) throws OpenInterfaceGrpcTimeoutExecption {
- logger.info("Input " + input.toString());
+ logger.info("Input {}", input);
Output result = Output.newBuilder().build();
try {
result = blockingStub.withDeadlineAfter(timeout, TimeUnit.MILLISECONDS).invoke(input);
} catch (StatusRuntimeException e) {
- logger.warn("RPC failed: {0}", e.getStatus());
+ logger.warn("RPC failed: {}", e.getStatus());
//Status{code=DEADLINE_EXCEEDED}
throw new OpenInterfaceGrpcTimeoutExecption(e.getMessage());
}
- logger.info("Output: " + result.toString());
+ logger.info("Output: {}", result);
return result;
}
@@ -103,12 +103,12 @@ public class OpenInterfaceGrpcClient {
try {
result = blockingStub.withDeadlineAfter(timeout, TimeUnit.MILLISECONDS).remoteCli(args);
} catch (StatusRuntimeException e) {
- logger.warn("RPC failed: {0}", e.getStatus());
+ logger.warn("RPC failed: {}", e.getStatus());
//Status{code=DEADLINE_EXCEEDED}
throw new OpenInterfaceGrpcTimeoutExecption(e.getMessage());
}
- logger.info("Result: " + result.toString());
+ logger.info("Result: {}", result);
return result;
}
}