mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
Add additional logging for label save failures (#1012)
This is intended to help with debugging #744.
This commit is contained in:
parent
ab8925a005
commit
0fd8590605
1 changed files with 1 additions and 1 deletions
|
|
@ -345,7 +345,7 @@ func (d *Datastore) RecordLabelQueryExecutions(host *kolide.Host, results map[ui
|
|||
|
||||
_, err := d.db.Exec(sql, vals...)
|
||||
if err != nil {
|
||||
return errors.Wrap(err, "insert label query executions")
|
||||
return errors.Wrapf(err, "insert label query executions (%v)", vals)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue