Skip to content

Commit

Permalink
sqlite: archive event time as debug message, not info
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonish committed Nov 27, 2019
1 parent 05bef56 commit e1c5d9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqlite/datastore.go
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ func (s *DataStore) ArchiveAlertGroup(p core.AlertGroupQueryParams, user core.Us
}
tx.Commit()
if count > 0 {
log.Info("Archived %d events in %v", count, time.Now().Sub(execStart))
log.Debug("Archived %d events in %v", count, time.Now().Sub(execStart))
} else {
break
}
Expand Down

0 comments on commit e1c5d9f

Please sign in to comment.