diff --git a/cmds/portmaster-core/main.go b/cmds/portmaster-core/main.go index 64f8db4f..92a91799 100644 --- a/cmds/portmaster-core/main.go +++ b/cmds/portmaster-core/main.go @@ -4,6 +4,7 @@ import ( //nolint:gci,nolintlint "os" "github.com/safing/portbase/info" + "github.com/safing/portbase/log" "github.com/safing/portbase/metrics" "github.com/safing/portbase/run" "github.com/safing/spn/conf" @@ -21,6 +22,9 @@ func main() { // set information info.Set("Portmaster", "0.9.3", "AGPLv3", true) + // Set default log level. + log.SetLogLevel(log.WarningLevel) + // Configure metrics. _ = metrics.SetNamespace("portmaster") diff --git a/profile/config.go b/profile/config.go index 8963d2ad..a9d705e6 100644 --- a/profile/config.go +++ b/profile/config.go @@ -346,7 +346,7 @@ Important: DNS Requests are only matched against domain and filter list rules, a cfgStringArrayOptions[CfgOptionServiceEndpointsKey] = cfgOptionServiceEndpoints // Filter list IDs - defaultFilterListsValue := []string{"TRAC", "MAL", "BAD"} + defaultFilterListsValue := []string{"TRAC", "MAL", "BAD", "UNBREAK"} err = config.Register(&config.Option{ Name: "Filter Lists", Key: CfgOptionFilterListsKey,