mirror of https://github.com/v2ray/v2ray-core
remove unnecessary error msg
parent
c13b212fc6
commit
eff193ab45
|
@ -23,7 +23,7 @@ func RegisterConfigLoader(format ConfigFormat, loader ConfigLoader) error {
|
|||
func LoadConfig(format ConfigFormat, input io.Reader) (*Config, error) {
|
||||
loader, found := configLoaderCache[format]
|
||||
if !found {
|
||||
return nil, newError("Core: ", ConfigFormat_name[int32(format)], " is not loadable.")
|
||||
return nil, newError(ConfigFormat_name[int32(format)], " is not loadable.")
|
||||
}
|
||||
return loader(input)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue