aboutsummaryrefslogtreecommitdiff
path: root/db.go
diff options
context:
space:
mode:
authorFelix Hanley <felix@userspace.com.au>2017-06-17 13:23:22 +0000
committerFelix Hanley <felix@userspace.com.au>2017-06-17 13:23:22 +0000
commitae07c61044d45e54652ce45dd75bf33ec48aa150 (patch)
treee3fd7e04f5086061efc576db9bdaccb8fcc996c2 /db.go
parent38f4db10adce0dd5e93f9835e1bad49ed4f4276b (diff)
downloaddhtsearch-ae07c61044d45e54652ce45dd75bf33ec48aa150.tar.gz
dhtsearch-ae07c61044d45e54652ce45dd75bf33ec48aa150.tar.bz2
Reduce some logging with the 'quiet' flag
Diffstat (limited to 'db.go')
-rw-r--r--db.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/db.go b/db.go
index 1bfc257..9e513dd 100644
--- a/db.go
+++ b/db.go
@@ -22,7 +22,6 @@ func newDB(dsn string) (*database, error) {
if err != nil {
return nil, err
}
- fmt.Printf("Found %d existing torrents\n", count)
torrentsTotal.Set(int64(count))
return &database{d, false}, nil
}