mirror of
https://github.com/v2fly/v2ray-core.git
synced 2026-07-21 23:33:58 -04:00
Always show running message.
This commit is contained in:
@@ -91,7 +91,12 @@ func (vp *Point) Start() error {
|
||||
}
|
||||
|
||||
return retry.Timed(100 /* times */, 100 /* ms */).On(func() error {
|
||||
return vp.ich.Listen(vp.port)
|
||||
err := vp.ich.Listen(vp.port)
|
||||
if err == nil {
|
||||
log.Warning("Point server started on port %d", vp.port)
|
||||
return nil
|
||||
}
|
||||
return err
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user