diff --git a/backend/database/redis.go b/backend/database/redis.go index 4ecabbbd..57cef9a2 100644 --- a/backend/database/redis.go +++ b/backend/database/redis.go @@ -125,8 +125,6 @@ func (r *Redis) BRPop(collection string, timeout int) (string, error) { values, err := redis.Strings(c.Do("BRPOP", collection, timeout)) if err != nil { - log.Error(err.Error()) - debug.PrintStack() return "", err } return values[1], nil