0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-06-15 21:07:15 +03:00

Move some log from stdout to ray log

This commit is contained in:
yuhan6665
2023-10-28 21:31:08 -04:00
parent f86fe6f91a
commit d24a636c75
4 changed files with 20 additions and 11 deletions

View File

@ -0,0 +1,9 @@
package xudp
import "github.com/xtls/xray-core/common/errors"
type errPathObjHolder struct{}
func newError(values ...interface{}) *errors.Error {
return errors.New(values...).WithPathObj(errPathObjHolder{})
}