We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cac0f00 commit b84d7cfCopy full SHA for b84d7cf
1 file changed
runtime/index.go
@@ -159,7 +159,6 @@ func (s *SearchIndex) add(id string, data any) {
159
if s.idx == nil {
160
return
161
}
162
- log.Debugf("adding %s to search index", id)
163
err := s.idx.Index(id, data)
164
if err != nil {
165
log.Errorf("add '%s' to search index failed: %v", id, err)
@@ -171,7 +170,6 @@ func (s *SearchIndex) Delete(id string) {
171
170
172
173
s.queue <- func() {
174
- log.Debugf("removing %s from search index", id)
175
_ = s.idx.Delete(id)
176
177
0 commit comments