1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-26 09:25:23 +00:00

Refine: geofile reading errors (#236)

This commit is contained in:
Loyalsoldier 2020-09-29 14:01:12 +08:00 committed by GitHub
parent e445d21f4b
commit dfed0dc03a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -162,7 +162,7 @@ func loadIP(filename, country string) ([]*router.CIDR, error) {
}
}
return nil, newError("country not found: " + country)
return nil, newError("country not found in ", filename, ": ", country)
}
func loadSite(filename, country string) ([]*router.Domain, error) {
@ -181,7 +181,7 @@ func loadSite(filename, country string) ([]*router.Domain, error) {
}
}
return nil, newError("country not found: " + country)
return nil, newError("list not found in ", filename, ": ", country)
}
type AttributeMatcher interface {