fix(logging): suppress fedify inbox HTTP Signature verification noise
This commit is contained in:
@@ -99,6 +99,15 @@ export function setupFederation(options) {
|
|||||||
sinks: ["console"],
|
sinks: ["console"],
|
||||||
lowestLevel: "fatal",
|
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.
|
// All remaining Fedify logs - federation, vocab, delivery, signatures.
|
||||||
category: ["fedify"],
|
category: ["fedify"],
|
||||||
|
|||||||
Reference in New Issue
Block a user