summaryrefslogtreecommitdiff
path: root/crawler/convert_price.go
diff options
context:
space:
mode:
Diffstat (limited to 'crawler/convert_price.go')
-rw-r--r--crawler/convert_price.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/crawler/convert_price.go b/crawler/convert_price.go
index f1c88b4..b28639f 100644
--- a/crawler/convert_price.go
+++ b/crawler/convert_price.go
@@ -2,7 +2,6 @@ package main
import (
"errors"
- "log"
"regexp"
"strconv"
"strings"
@@ -98,7 +97,7 @@ func convert_price(price string) (int, error) {
*/
price_int, err := strconv.Atoi(price)
if err != nil {
- log.Println(price)
+ Println(err, price)
return 0, err
}