Skip to content

Commit

Permalink
xds: fix typo in a log message (#7762)
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjaypujare committed Dec 28, 2020
1 parent 20197d3 commit 67ad786
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xds/src/main/java/io/grpc/xds/ClientXdsClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ void watchLdsResource(final String resourceName, final LdsResourceWatcher watche
public void run() {
ResourceSubscriber subscriber = ldsResourceSubscribers.get(resourceName);
if (subscriber == null) {
getLogger().log(XdsLogLevel.INFO, "Subscribe CDS resource {0}", resourceName);
getLogger().log(XdsLogLevel.INFO, "Subscribe LDS resource {0}", resourceName);
subscriber = new ResourceSubscriber(ResourceType.LDS, resourceName);
ldsResourceSubscribers.put(resourceName, subscriber);
adjustResourceSubscription(ResourceType.LDS);
Expand Down

0 comments on commit 67ad786

Please sign in to comment.