Skip to content

Commit 06707f7

Browse files
committed
xds: Use a different log name for XdsClientImpl and ControlPlaneClient
Seems like a good time to stop hating ourselves, as that seems to be the only reason to use the same string.
1 parent efcdebb commit 06707f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xds/src/main/java/io/grpc/xds/client/ControlPlaneClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ final class ControlPlaneClient {
109109
this.backoffPolicyProvider = checkNotNull(backoffPolicyProvider, "backoffPolicyProvider");
110110
this.messagePrinter = checkNotNull(messagePrinter, "messagePrinter");
111111
stopwatch = checkNotNull(stopwatchSupplier, "stopwatchSupplier").get();
112-
logId = InternalLogId.allocate("xds-client", serverInfo.target());
112+
logId = InternalLogId.allocate("xds-cp-client", serverInfo.target());
113113
logger = XdsLogger.withLogId(logId);
114114
logger.log(XdsLogLevel.INFO, "Created");
115115
}

0 commit comments

Comments
 (0)