Browse Source

chore(stun): switch lookup warning to debug level

Jakob Borg 9 months ago
parent
commit
533c9a6ab0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/config/optionsconfiguration.go

+ 1 - 1
lib/config/optionsconfiguration.go

@@ -188,7 +188,7 @@ func (opts OptionsConfiguration) StunServers() []string {
 		case "default":
 			_, records, err := net.LookupSRV("stun", "udp", "syncthing.net")
 			if err != nil {
-				l.Warnln("Unable to resolve primary STUN servers via DNS:", err)
+				l.Debugf("Unable to resolve primary STUN servers via DNS:", err)
 			}
 
 			for _, record := range records {