Change session done stats to 'debug' level

When using watch tower for a convenient way to reload freshly built images from the local Docker registry (with --no-pull and a poll interval of one second), the "Session done" log message spams the logs: `level=info msg="Session done" Failed=0 Scanned=3 Updated=0 notify=no`.

Since this is really debug-oriented messaging, seems appropriate.
This commit is contained in:
Matthew McNeely 2022-08-17 16:34:17 -04:00 committed by nils måsén
parent 626bd547e9
commit 47ef48be28

View file

@ -371,6 +371,6 @@ func runUpdatesWithNotifications(filter t.Filter) *metrics.Metric {
"Scanned": metricResults.Scanned,
"Updated": metricResults.Updated,
"Failed": metricResults.Failed,
}).Info("Session done")
}).Debug("Session done")
return metricResults
}