xds: fix mistake of taking wrong argument in log message (#7653)

This commit is contained in:
Chengyuan Zhang 2020-11-20 23:17:03 -08:00 committed by GitHub
parent a7530efd6e
commit 1ca8bda17f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -709,7 +709,7 @@ abstract class AbstractXdsClient extends XdsClient {
}
DiscoveryRequest request = builder.build();
requestWriter.onNext(request);
logger.log(XdsLogLevel.DEBUG, "Sent DiscoveryRequest\n{0}", respPrinter);
logger.log(XdsLogLevel.DEBUG, "Sent DiscoveryRequest\n{0}", request);
}
@Override