mirror of https://github.com/v2ray/v2ray-core
Adjust TCP inbound logs
parent
2bfc6c8e9b
commit
9046bea466
|
@ -33,9 +33,9 @@ func ListenTCP(ctx context.Context, address net.Address, port net.Port, streamSe
|
|||
Port: int(port),
|
||||
}, streamSettings.SocketSettings)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
return nil, newError("failed to listen TCP on", address, ":", port).Base(err)
|
||||
}
|
||||
newError("listening TCP on ", address, ":", port).WriteToLog(session.ExportIDToError(ctx))
|
||||
newError("Listening TCP on ", address, ":", port).WriteToLog(session.ExportIDToError(ctx))
|
||||
|
||||
tcpSettings := streamSettings.ProtocolSettings.(*Config)
|
||||
var l *Listener
|
||||
|
|
Loading…
Reference in New Issue