Skip to content
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.

Commit

Permalink
rds: Augment error log message with Pod UID (#2379)
Browse files Browse the repository at this point in the history
Signed-off-by: Delyan Raychev <delyan.raychev@microsoft.com>
  • Loading branch information
draychev authored Jan 26, 2021
1 parent 377a47f commit f88ca6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/envoy/rds/response.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ func NewResponse(catalog catalog.MeshCataloger, proxy *envoy.Proxy, _ *xds_disco

allTrafficPolicies, err := catalog.ListTrafficPolicies(proxyServiceName)
if err != nil {
log.Error().Err(err).Msg("Failed listing routes")
log.Error().Err(err).Msgf("Error listing routes for Envoy on Pod with UID=%s", proxy.GetPodUID())
return nil, err
}
log.Debug().Msgf("trafficPolicies for service %s : %+v", proxyServiceName.String(), allTrafficPolicies)
Expand Down

0 comments on commit f88ca6e

Please sign in to comment.