feat: make Fedify log level configurable via logLevel option

Default changed from "info" to "warning" so production logs are quiet.
Set logLevel to "info" or "debug" in config to troubleshoot federation.
This commit is contained in:
Ricardo
2026-02-21 22:51:07 +01:00
parent 52088a7bce
commit 0fa446ceb2
4 changed files with 9 additions and 1 deletions

View File

@@ -262,6 +262,7 @@ On restart, `refollow:pending` entries are reset to `import` to prevent stale cl
redisUrl: "", // Redis for delivery queue (empty = in-process)
parallelWorkers: 5, // Parallel delivery workers (with Redis)
actorType: "Person", // Person | Service | Organization | Group
logLevel: "warning", // Fedify log level: debug | info | warning | error | fatal
timelineRetention: 1000, // Max timeline items (0 = unlimited)
}
```