Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f0d57a54 authored by Patrick McHardy's avatar Patrick McHardy
Browse files

netfilter: ipt_LOG/ip6t_LOG: use more appropriate log level as default



Use KERN_NOTICE instead of KERN_EMERG by default. This only affects
kernel internal logging (like conntrack), user-specified logging rules
contain a seperate log level.

Signed-off-by: default avatarPatrick McHardy <kaber@trash.net>
parent 90348e0e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -367,7 +367,7 @@ static struct nf_loginfo default_loginfo = {
	.type	= NF_LOG_TYPE_LOG,
	.u = {
		.log = {
			.level    = 0,
			.level    = 5,
			.logflags = NF_LOG_MASK,
		},
	},
+1 −1
Original line number Diff line number Diff line
@@ -377,7 +377,7 @@ static struct nf_loginfo default_loginfo = {
	.type	= NF_LOG_TYPE_LOG,
	.u = {
		.log = {
			.level	  = 0,
			.level	  = 5,
			.logflags = NF_LOG_MASK,
		},
	},