Browse Source

Log when we fail to connect to relay

Audrius Butkevicius 10 years ago
parent
commit
c9e67fb460
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/relay/relay.go

+ 1 - 1
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)