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
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)
}