Ver Fonte

include detailed error

Darien Raymond há 8 anos atrás
pai
commit
b862365832
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      transport/internet/websocket/dialer.go

+ 1 - 1
transport/internet/websocket/dialer.go

@@ -17,7 +17,7 @@ func Dial(ctx context.Context, dest net.Destination) (internet.Connection, error
 
 	conn, err := dialWebsocket(ctx, dest)
 	if err != nil {
-		return nil, newError("failed to dial WebSocket")
+		return nil, newError("failed to dial WebSocket").Base(err)
 	}
 	return internet.Connection(conn), nil
 }