Skip to content

Commit b84d7cf

Browse files
committed
chore: add debug log message
1 parent cac0f00 commit b84d7cf

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

runtime/index.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,6 @@ func (s *SearchIndex) add(id string, data any) {
159159
if s.idx == nil {
160160
return
161161
}
162-
log.Debugf("adding %s to search index", id)
163162
err := s.idx.Index(id, data)
164163
if err != nil {
165164
log.Errorf("add '%s' to search index failed: %v", id, err)
@@ -171,7 +170,6 @@ func (s *SearchIndex) Delete(id string) {
171170
return
172171
}
173172
s.queue <- func() {
174-
log.Debugf("removing %s from search index", id)
175173
_ = s.idx.Delete(id)
176174
}
177175
}

0 commit comments

Comments
 (0)