1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-12-30 05:56:54 -05:00

improve error message for implementation set

This commit is contained in:
Shelikhoo 2021-09-06 13:45:01 +01:00
parent 13f05c1b9d
commit 6fe8010caa
No known key found for this signature in database
GPG Key ID: C4D5E79D22B25316

View File

@ -37,7 +37,7 @@ func (i *implementationSet) findImplementationByAlias(alias string) (string, Cus
if found {
return impl.FullName, impl.Loader, nil
}
return "", nil, newError("cannot find implementation by alias")
return "", nil, newError("cannot find implementation by alias: ", alias)
}
func newImplementationSet() *implementationSet {