1
0
mirror of https://github.com/netbirdio/netbird.git synced 2025-03-01 16:31:20 +01:00
netbird/iface/wg_log.go

16 lines
214 B
Go
Raw Normal View History

package iface
import (
"os"
"golang.zx2c4.com/wireguard/device"
)
func wgLogLevel() int {
if os.Getenv("NB_WG_DEBUG") == "true" {
return device.LogLevelVerbose
} else {
return device.LogLevelSilent
}
}