File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
packages/grpc-js-xds/src/xds-stream-state Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -158,7 +158,7 @@ export class CdsState implements XdsStreamState<Cluster__Output> {
158
158
watcher . onValidUpdate ( message , isV2 ) ;
159
159
}
160
160
}
161
- trace ( 'Received CDS updates for cluster names ' + Array . from ( allClusterNames ) ) ;
161
+ trace ( 'Received CDS updates for cluster names [ ' + Array . from ( allClusterNames ) + ']' ) ;
162
162
this . handleMissingNames ( allClusterNames ) ;
163
163
this . edsState . handleMissingNames ( allEdsServiceNames ) ;
164
164
return null ;
Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ export class EdsState implements XdsStreamState<ClusterLoadAssignment__Output> {
162
162
watcher . onValidUpdate ( message , isV2 ) ;
163
163
}
164
164
}
165
- trace ( 'Received EDS updates for cluster names ' + Array . from ( allClusterNames ) ) ;
165
+ trace ( 'Received EDS updates for cluster names [ ' + Array . from ( allClusterNames ) + ']' ) ;
166
166
return null ;
167
167
}
168
168
Original file line number Diff line number Diff line change @@ -175,7 +175,7 @@ export class LdsState implements XdsStreamState<Listener__Output> {
175
175
watcher . onValidUpdate ( message , isV2 ) ;
176
176
}
177
177
}
178
- trace ( 'Received RDS response with route config names ' + Array . from ( allTargetNames ) ) ;
178
+ trace ( 'Received LDS response with listener names [ ' + Array . from ( allTargetNames ) + ']' ) ;
179
179
this . handleMissingNames ( allTargetNames ) ;
180
180
this . rdsState . handleMissingNames ( allRouteConfigNames ) ;
181
181
return null ;
Original file line number Diff line number Diff line change @@ -199,7 +199,7 @@ export class RdsState implements XdsStreamState<RouteConfiguration__Output> {
199
199
watcher . onValidUpdate ( message , isV2 ) ;
200
200
}
201
201
}
202
- trace ( 'Received RDS response with route config names ' + Array . from ( allRouteConfigNames ) ) ;
202
+ trace ( 'Received RDS response with route config names [ ' + Array . from ( allRouteConfigNames ) + ']' ) ;
203
203
return null ;
204
204
}
205
205
You can’t perform that action at this time.
0 commit comments