summaryrefslogtreecommitdiff
path: root/crawler/shops.go
diff options
context:
space:
mode:
Diffstat (limited to 'crawler/shops.go')
-rw-r--r--crawler/shops.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/crawler/shops.go b/crawler/shops.go
index 95d8c99..656cd1f 100644
--- a/crawler/shops.go
+++ b/crawler/shops.go
@@ -2,8 +2,6 @@ package main
import (
"strings"
-
- log "github.com/sirupsen/logrus"
)
func (app *App) insertShops() error {
@@ -134,7 +132,7 @@ func (app *App) getShops() ([]Shop, error) {
if err != nil {
return []Shop{}, err
}
- log.Debug("Crawling: " + shop.Name)
+ shop.Debug("Crawling: " + shop.Name)
Shops = append(Shops, shop)
}