mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-22 08:03:30 +01:00
16 lines
214 B
Go
16 lines
214 B
Go
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
|
|
}
|
|
}
|