From bc794e7c150407821c28076552ab9a015c0fb449 Mon Sep 17 00:00:00 2001 From: scienmind Date: Sat, 4 Jun 2016 10:41:36 +0000 Subject: [PATCH] lib/connections: Relay failures should be informative, not warning Skip-check: authors GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3263 --- AUTHORS | 1 + lib/connections/relay_listen.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/AUTHORS b/AUTHORS index 1ff40ef35..db0567ae1 100644 --- a/AUTHORS +++ b/AUTHORS @@ -12,6 +12,7 @@ Alexander Graf (alex2108) Alexandre Viau (aviau) Anderson Mesquita (andersonvom) Andrew Dunham (andrew-d) +Andrey D (scienmind) Antony Male (canton7) Arthur Axel fREW Schmidt (frioux) Audrius Butkevicius (AudriusButkevicius) diff --git a/lib/connections/relay_listen.go b/lib/connections/relay_listen.go index a679acc54..9b00d3e0e 100644 --- a/lib/connections/relay_listen.go +++ b/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 }