@cryptotaxi247 / infra-1 / commits / 03d19568

mjolnir: disable verbose logging to the moderation managementRoom

The moderation room receives too many inactionable messages otherwise.

Martin Weinelt committed Jun 23, 2023 at 01:02 UTC 03d19568a2e8345f8e9c25a566aa44a5768a1437
1 file changed +4
delft/eris/mjolnir.nix
+4
@@ -34,10 +34,14 @@
34
35 managementRoom = "#moderators:nixos.org";
36
37 + # https://github.com/matrix-org/mjolnir/blob/master/config/default.yaml
38 settings = {
39 noop = false;
40 protectAllJoinedRooms = true;
41 fasterMembershipChecks = true;
42 +
43 + # too noisy
44 + verboseLogging = false;
45 };
46 };
47 }