Skip to content

Commit b623835

Browse files
authored
pkg/ansible/proxy: change a cache miss log from error to info (#824)
* pkg/ansible/proxy: change a cache miss log from error to info
1 parent 3081e30 commit b623835

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/ansible/proxy/proxy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ func CacheResponseHandler(h http.Handler, informerCache cache.Cache, restMapper
8282
k, err := restMapper.KindFor(gvr)
8383
if err != nil {
8484
// break here in case resource doesn't exist in cache
85-
log.Error(err, "didn't find kind")
85+
log.Info("cache miss", "GVR", gvr)
8686
break
8787
}
8888

0 commit comments

Comments
 (0)