We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 916d0d5 commit 040035bCopy full SHA for 040035b
netty/src/main/java/io/grpc/netty/NettyClientTransport.java
@@ -204,8 +204,9 @@ public ClientStream newStream(
204
if (enablePerRpcAuthorityCheck) {
205
return new FailingClientStream(verificationStatus, tracers);
206
}
207
- logger.warning("Authority verification for the rpc failed (This will be an error in the "
208
- + "future) with error status: " + verificationStatus.getDescription());
+ logger.warning(String.format("Authority verification for the rpc %s failed (this will be an" +
+ " error in the future) with error status: %s", method.getFullMethodName(),
209
+ verificationStatus.getDescription()));
210
211
212
StatsTraceContext statsTraceCtx =
0 commit comments