1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-06-29 20:06:37 +02:00

Don't log join/part/kick by default if memory log is on via

conf/rpc.modules.default.conf. This because:
1) It matches the default in example.conf for ircd.log
2) It is a more privacy-friendly setting
3) The log entries are spammy / fill the memory log buffer quickly
This commit is contained in:
Bram Matthys
2023-05-05 14:50:28 +02:00
parent 4f632125fb
commit 45342c2d33
+7 -1
View File
@@ -43,8 +43,14 @@ listen {
@if !defined($NO_DEFAULT_LOG_MEMORY_BLOCK)
log {
source {
!debug;
all;
!debug;
!join.LOCAL_CLIENT_JOIN;
!join.REMOTE_CLIENT_JOIN;
!part.LOCAL_CLIENT_PART;
!part.REMOTE_CLIENT_PART;
!kick.LOCAL_CLIENT_KICK;
!kick.REMOTE_CLIENT_KICK;
}
destination {
memory {