Skip to content

Commit b012cbd

Browse files
committed
Do Not Merge: Increase verbosity to observe CI logs
1 parent 220ac10 commit b012cbd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pkg/cvo/metrics.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ func getAPIServerTLSProfile(apiServerLister configlistersv1.APIServerLister, las
156156

157157
// Check if the cached profile is still valid based on generation
158158
if lastValidProfile != nil && lastValidProfile.generation == apiServer.Generation {
159-
klog.V(4).Info("Using cached TLS profile (generation unchanged)")
159+
klog.V(2).Info("Using cached TLS profile (generation unchanged)")
160160
return lastValidProfile, nil
161161
}
162162

@@ -167,7 +167,7 @@ func getAPIServerTLSProfile(apiServerLister configlistersv1.APIServerLister, las
167167
}
168168

169169
if lastValidProfile != nil && lastValidProfile.isEqual(&profile) {
170-
klog.V(4).Info("TLS profile spec unchanged despite generation bump, updating generation")
170+
klog.V(2).Info("TLS profile spec unchanged despite generation bump, updating generation")
171171
return &cachedTLSProfile{
172172
spec: profile,
173173
apply: lastValidProfile.apply,

0 commit comments

Comments
 (0)