Skip to content

Commit d6b8d8f

Browse files
committed
OCPBUGS-19476: update Insights report config logging
1 parent 429cb3d commit d6b8d8f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pkg/insights/insightsreport/insightsreport.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,9 @@ func (c *Controller) RetrieveReport() {
293293
func (c *Controller) Run(ctx context.Context) {
294294
c.StatusController.UpdateStatus(controllerstatus.Summary{Healthy: true})
295295
klog.V(2).Info("Starting report retriever")
296-
klog.V(2).Infof("Initial config: %v", c.configurator.Config())
296+
conf := c.configurator.Config()
297+
klog.V(2).Infof("Insights analysis reports will be downloaded from the %s endpoint with a delay of %s",
298+
conf.ReportEndpoint, conf.ReportPullingDelay)
297299
for {
298300
// always wait for new uploaded archive or insights-operator ends
299301
select {

0 commit comments

Comments
 (0)