1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-10 18:00:43 +00:00

update error propagation

This commit is contained in:
Darien Raymond 2017-04-14 14:58:32 +02:00
parent b98f3d3358
commit 94e01672d7
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -108,8 +108,7 @@ func DialKCP(ctx context.Context, dest v2net.Destination) (internet.Connection,
src := internet.DialerSourceFromContext(ctx)
rawConn, err := internet.DialSystem(ctx, src, dest)
if err != nil {
log.Trace(newError("failed to dial to dest: ", err).AtError())
return nil, err
return nil, newError("failed to dial to dest: ", err).AtWarning().Base(err)
}
conn := &ClientConnection{
Conn: rawConn,