From c9e67fb460fb8344889fa55891383f7812a076aa Mon Sep 17 00:00:00 2001 From: Audrius Butkevicius Date: Sun, 20 Dec 2015 22:14:13 +0000 Subject: [PATCH] Log when we fail to connect to relay --- lib/relay/relay.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/relay/relay.go b/lib/relay/relay.go index 7bf538f92..534f05ada 100644 --- a/lib/relay/relay.go +++ b/lib/relay/relay.go @@ -112,7 +112,7 @@ func (s *Svc) CommitConfiguration(from, to config.Configuration) bool { l.Debugln("Connecting to relay", uri) c, err := client.NewClient(uri, s.tlsCfg.Certificates, s.invitations, 10*time.Second) if err != nil { - l.Debugln("Failed to connect to relay", uri, err) + l.Infoln("Failed to connect to relay", uri, err) continue } s.tokens[key] = s.Add(c)