Browse Source

lib/connections: Relay failures should be informative, not warning

Skip-check: authors

GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3263
scienmind 9 years ago
parent
commit
bc794e7c15
2 changed files with 2 additions and 1 deletions
  1. 1 0
      AUTHORS
  2. 1 1
      lib/connections/relay_listen.go

+ 1 - 0
AUTHORS

@@ -12,6 +12,7 @@ Alexander Graf (alex2108) <[email protected]>
 Alexandre Viau (aviau) <[email protected]> <[email protected]>
 Anderson Mesquita (andersonvom) <[email protected]>
 Andrew Dunham (andrew-d) <[email protected]>
+Andrey D (scienmind) <[email protected]>
 Antony Male (canton7) <[email protected]>
 Arthur Axel fREW Schmidt (frioux) <[email protected]> <[email protected]>
 Audrius Butkevicius (AudriusButkevicius) <[email protected]>

+ 1 - 1
lib/connections/relay_listen.go

@@ -69,7 +69,7 @@ func (t *relayListener) Serve() {
 
 			conn, err := client.JoinSession(inv)
 			if err != nil {
-				l.Warnln("Joining relay session (BEP/relay):", err)
+				l.Infoln("Joining relay session (BEP/relay):", err)
 				continue
 			}