aboutsummaryrefslogtreecommitdiffstats
path: root/grpc/grpc-client/src/main
diff options
context:
space:
mode:
authorKanagaraj Manickam <kanagaraj.manickam@huawei.com>2020-07-01 04:48:14 +0000
committerGerrit Code Review <gerrit@onap.org>2020-07-01 04:48:14 +0000
commit022ee4b8daa1b852d72c1083658d1efb254f9dd5 (patch)
tree3acfd05d04321b7684579b0259c2f9303f35868c /grpc/grpc-client/src/main
parent29308f5f904e6bfd92204137357fe350d40cf083 (diff)
parent268be523fb1142138a3f710642b5773453841eeb (diff)
Merge "code improvements"
Diffstat (limited to 'grpc/grpc-client/src/main')
-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;
}
}