From b3d0a9b6389a0730a7df5028d67dac102b6a81ab Mon Sep 17 00:00:00 2001 From: Joachim Wiberg Date: Sat, 22 Apr 2023 08:31:14 +0200 Subject: [PATCH] Revert "syslog.conf: disable debug messages by default from /var/log/syslog" This reverts commit 4fd55cd1acd0ae8ea6b8a469991a104b17da37f3 because it has caused more problems than it was intended to fix. If users get too much debug log messages they can add this themselves, but if they don't get their log messages they will believe there's something wrong with their application generating the logs. The file /var/log/syslog is supposed to log everything, except auth*. Signed-off-by: Joachim Wiberg --- syslog.conf | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/syslog.conf b/syslog.conf index a451cfb..c4c7525 100644 --- a/syslog.conf +++ b/syslog.conf @@ -7,11 +7,7 @@ # First some standard log files. Log by facility. # auth,authpriv.* /var/log/auth.log - -# Everything except debug and security tokens, re-enable debug by -# dropping '*.!=debug;', or enable /var/log/debug below -*.*;*.!=debug;\ - auth,authpriv.none -/var/log/syslog +*.*;auth,authpriv.none -/var/log/syslog #cron.* /var/log/cron.log #daemon.* -/var/log/daemon.log