Remove logging lines
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Peter Stuifzand 2021-06-05 20:03:06 +02:00
parent ec493be52d
commit 2a60a6afff
Signed by: peter
GPG Key ID: 374322D56E5209E8
2 changed files with 0 additions and 2 deletions

View File

@ -217,7 +217,6 @@ ON CONFLICT ON CONSTRAINT "items_uid_key" DO NOTHING
return false, err
}
log.Printf("AddItem: rows affected %d\n", c)
return c > 0, nil
}

View File

@ -31,7 +31,6 @@ type Backend interface {
// Create creates a channel of the specified type. Return nil when the type
// is not known.
func Create(channel, timelineType string, pool *redis.Pool, db *sql.DB) Backend {
log.Printf("fetching timeline with type %s", timelineType)
if timelineType == "sorted-set" {
timeline := &redisSortedSetTimeline{channel: channel, pool: pool}
err := timeline.Init()