From 688d6be9575d5e19715f6e3730460057890ba713 Mon Sep 17 00:00:00 2001 From: Ted Unangst Date: Wed, 4 Sep 2019 13:59:27 -0400 Subject: [PATCH] log what we don't like --- fun.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/fun.go b/fun.go index 5aabc7f..9086c1e 100644 --- a/fun.go +++ b/fun.go @@ -645,15 +645,18 @@ func thoudostbitethythumb(userid int64, who []string, objid string) bool { thumblock.Unlock() objwhere := originate(objid) if objwhere != "" && biters[objwhere] { + log.Printf("thumbbiter: %s", objid) return true } for _, w := range who { if biters[w] { + log.Printf("thumbbiter: %s", w) return true } where := originate(w) if where != "" { if biters[where] { + log.Printf("thumbbiter: %s", w) return true } }