From 50ccd2ed94e00839915ae3478fa0d7734fc6b680 Mon Sep 17 00:00:00 2001 From: YouROK <8YouROK8@mail.ru> Date: Sun, 29 Jan 2023 20:36:11 +0300 Subject: [PATCH] remove log --- server/rutor/torrsearch/index.go | 4 ---- 1 file changed, 4 deletions(-) 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) }