mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
Change noisy directIngestWindowsUpdateHistory log from warn to debug (#15772)
#14939 - [X] Manual QA for all new/changed functionality.
This commit is contained in:
parent
4d11235833
commit
f3aab18873
1 changed files with 3 additions and 1 deletions
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue