fix(config): show read URL on parse failure
Alan Pearce alan@alanpearce.eu
Mon, 13 May 2024 22:34:11 +0200
1 files changed, 1 insertions(+), 1 deletions(-)
jump to
M internal/config/config.go → internal/config/config.go
@@ -20,7 +20,7 @@ func (u *URL) UnmarshalText(text []byte) (err error) { u.URL, err = url.Parse(string(text)) if err != nil { - return errors.WithMessage(err, "could not parse URL") + return errors.WithMessagef(err, "could not parse URL %s", string(text)) } return nil