Remove verbose and debug logging across HandleDelete, HandleEvent, and acl/follows for consistency.

This commit is contained in:
2025-09-10 22:26:41 +01:00
parent fdcfd863e0
commit cb54891473
3 changed files with 40 additions and 24 deletions

View File

@@ -98,9 +98,9 @@ func (f *Follows) Configure(cfg ...any) (err error) {
if ev, err = f.D.FetchEventBySerial(s); chk.E(err) {
continue
}
log.I.F("admin follow list:\n%s", ev.Serialize())
// log.I.F("admin follow list:\n%s", ev.Serialize())
for _, v := range ev.Tags.GetAll([]byte("p")) {
log.I.F("adding follow: %s", v.Value())
// log.I.F("adding follow: %s", v.Value())
var a []byte
if b, e := hex.Dec(string(v.Value())); chk.E(e) {
continue