diff --git a/server/rutor/torrsearch/index.go b/server/rutor/torrsearch/index.go index ce5e75a..74d459c 100644 --- a/server/rutor/torrsearch/index.go +++ b/server/rutor/torrsearch/index.go @@ -1,7 +1,6 @@ package torrsearch import ( - "server/log" "server/rutor/models" "strconv" ) @@ -12,9 +11,6 @@ type Index map[string][]int var idx Index func NewIndex(torrs []*models.TorrentDetails) { - if len(torrs) > 0 { - log.TLogln("Index rutor db") - } idx = make(Index) idx.add(torrs) }