remove log

This commit is contained in:
YouROK
2023-01-29 20:36:11 +03:00
parent ff7a374cdf
commit 50ccd2ed94

View File

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