mirror of https://github.com/v2ray/v2ray-core
add error message
parent
3942679371
commit
223ff7d561
|
@ -50,6 +50,7 @@ func (this *InboundDetourHandler) Start() error {
|
||||||
return retry.Timed(100 /* times */, 100 /* ms */).On(func() error {
|
return retry.Timed(100 /* times */, 100 /* ms */).On(func() error {
|
||||||
err := ich.handler.Listen(ich.port)
|
err := ich.handler.Listen(ich.port)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
log.Error("Failed to start inbound detour on port %d: %v", ich.port, err)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
|
|
Loading…
Reference in New Issue