소스 검색

Merge branch 'master' of https://github.com/v2ray/v2ray-core

v2ray 9 년 전
부모
커밋
299f866997
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      proxy/vmess/inbound/inbound.go

+ 1 - 1
proxy/vmess/inbound/inbound.go

@@ -114,7 +114,7 @@ func (this *VMessInboundHandler) Start() error {
 
 	tcpListener, err := internet.ListenTCP(this.meta.Address, this.meta.Port, this.HandleConnection, this.meta.StreamSettings)
 	if err != nil {
-		log.Error("Unable to listen tcp ", this.meta.Address, ":", this.meta.Port, ": ", err)
+		log.Error("VMess|Inbound: Unable to listen tcp ", this.meta.Address, ":", this.meta.Port, ": ", err)
 		return err
 	}
 	this.accepting = true