Skip to content

Commit 13a601d

Browse files
mikutaskishorj
authored andcommitted
fix log level (kubernetes-sigs#2598)
* fix log level * Update pkg/backend/endpoint_resolver.go Co-authored-by: Kishor Joshi <[email protected]>
1 parent c7ad843 commit 13a601d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pkg/backend/endpoint_resolver.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package backend
33
import (
44
"context"
55
"fmt"
6+
67
awssdk "github.com/aws/aws-sdk-go/aws"
78
"github.com/go-logr/logr"
89
"github.com/pkg/errors"
@@ -165,7 +166,7 @@ func (r *defaultEndpointResolver) resolvePodEndpointsWithEndpointsData(ctx conte
165166
return nil, false, err
166167
}
167168
if !exists {
168-
r.logger.Error(err, "ignore pod Endpoint without non-exist podInfo", "podKey", podKey.String())
169+
r.logger.Info("ignore pod Endpoint with non-existent podInfo", "podKey", podKey.String())
169170
continue
170171
}
171172
podEndpoint := buildPodEndpoint(pod, epAddr, epPort)

0 commit comments

Comments
 (0)