Change noisy directIngestWindowsUpdateHistory log from warn to debug (#15772)
#14939 - [X] Manual QA for all new/changed functionality.
This commit is contained in:
@@ -1122,7 +1122,9 @@ func directIngestWindowsUpdateHistory(
|
||||
for _, row := range rows {
|
||||
u, err := fleet.NewWindowsUpdate(row["title"], row["date"])
|
||||
if err != nil {
|
||||
level.Warn(logger).Log("op", "directIngestWindowsUpdateHistory", "skipped", err)
|
||||
// If the update failed to parse then we log a debug error and ignore it.
|
||||
// E.g. we've seen KB updates with titles like "Logitech - Image - 1.4.40.0".
|
||||
level.Debug(logger).Log("op", "directIngestWindowsUpdateHistory", "skipped", err)
|
||||
continue
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user