diff options
author | Neil Alexander <neilalexander@users.noreply.github.com> | 2022-09-27 17:30:40 +0100 |
---|---|---|
committer | Neil Alexander <neilalexander@users.noreply.github.com> | 2022-09-27 17:30:40 +0100 |
commit | 083ae01520afadfacc6f0ea4bdd501d41f0d832b (patch) | |
tree | 70441bfb2ac8f58c5ff017673b57e6979779273c /syncapi/consumers/clientapi.go | |
parent | 34993717fd702db50a82858a3ad4b660f0c7feac (diff) |
Promote reindexing log level
Diffstat (limited to 'syncapi/consumers/clientapi.go')
-rw-r--r-- | syncapi/consumers/clientapi.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/syncapi/consumers/clientapi.go b/syncapi/consumers/clientapi.go index b11ed4f5..796cc61e 100644 --- a/syncapi/consumers/clientapi.go +++ b/syncapi/consumers/clientapi.go @@ -91,7 +91,7 @@ func (s *OutputClientDataConsumer) Start() error { return } ctx := context.Background() - logrus.Debugf("Starting to index events") + logrus.Infof("Starting to index events") var offset int start := time.Now() count := 0 @@ -140,7 +140,7 @@ func (s *OutputClientDataConsumer) Start() error { offset += len(evs) count += len(elements) } - logrus.Debugf("Indexed %d events in %v", count, time.Since(start)) + logrus.Infof("Indexed %d events in %v", count, time.Since(start)) }) if err != nil { return err |