fix(logging): suppress fedify inbox HTTP Signature verification noise

This commit is contained in:
svemagie
2026-03-27 10:15:05 +01:00
parent 69ae731dab
commit 9b6db9865c

View File

@@ -99,6 +99,15 @@ export function setupFederation(options) {
sinks: ["console"],
lowestLevel: "fatal",
},
{
// Noise guard: HTTP Signature verification failures are expected for
// incoming activities from servers with expired/gone keys (e.g. deleted
// actors, migrated servers). These produce high log volume with no
// actionable signal — suppress everything below fatal.
category: ["fedify", "federation", "inbox"],
sinks: ["console"],
lowestLevel: "fatal",
},
{
// All remaining Fedify logs - federation, vocab, delivery, signatures.
category: ["fedify"],