more tunnel logging
This commit is contained in:
		| @@ -250,6 +250,7 @@ func (t *tun) connect() error { | ||||
| 	go func() { | ||||
| 		// accept inbound connections | ||||
| 		err := l.Accept(func(sock transport.Socket) { | ||||
| 			log.Debugf("Accepted connection from %s", sock.Remote()) | ||||
| 			// save the link | ||||
| 			id := uuid.New().String() | ||||
| 			t.Lock() | ||||
| @@ -280,11 +281,13 @@ func (t *tun) connect() error { | ||||
| 	}() | ||||
|  | ||||
| 	for _, node := range t.options.Nodes { | ||||
| 		log.Debugf("Dialing %s", node) | ||||
| 		c, err := t.options.Transport.Dial(node) | ||||
| 		if err != nil { | ||||
| 			log.Debugf("Tunnel failed to connect to %s: %v", node, err) | ||||
| 			continue | ||||
| 		} | ||||
| 		log.Debugf("Connected to %s", node) | ||||
|  | ||||
| 		if err := c.Send(&transport.Message{ | ||||
| 			Header: map[string]string{ | ||||
|   | ||||
		Reference in New Issue
	
	Block a user