From 94c6d8c55b3bd262bd747adb9c18468e58b1c326 Mon Sep 17 00:00:00 2001 From: braginini Date: Tue, 11 Apr 2023 11:21:40 +0200 Subject: [PATCH] Reduce log level for kernel module check --- iface/module_linux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iface/module_linux.go b/iface/module_linux.go index 0b210278a..815edf5e1 100644 --- a/iface/module_linux.go +++ b/iface/module_linux.go @@ -86,7 +86,7 @@ func tunModuleIsLoaded() bool { func WireGuardModuleIsLoaded() bool { if os.Getenv(envDisableWireGuardKernel) == "true" { - log.Infof("WireGuard kernel module disabled because the %s env is set to true", envDisableWireGuardKernel) + log.Debugf("WireGuard kernel module disabled because the %s env is set to true", envDisableWireGuardKernel) return false }