diff --git a/debian/syslog-ng.conf b/debian/syslog-ng.conf index 5ac14f35f..e500717f0 100644 --- a/debian/syslog-ng.conf +++ b/debian/syslog-ng.conf @@ -118,6 +118,11 @@ filter f_cother { level(debug, info, notice, warn) or facility(daemon, mail); }; filter f_ppp { facility(local2) and not filter(f_debug); }; filter f_console { level(warn .. emerg); }; +######################## +# Include all config files in /etc/syslog-ng/conf.d/ +######################## +@include "/etc/syslog-ng/conf.d/*.conf" + ######################## # Log paths ######################## @@ -154,8 +159,3 @@ log { source(s_src); filter(f_crit); destination(d_console); }; # All messages send to a remote site # #log { source(s_src); destination(d_net); }; - -### -# Include all config files in /etc/syslog-ng/conf.d/ -### -@include "/etc/syslog-ng/conf.d/*.conf"