summaryrefslogtreecommitdiff
path: root/i18nerr/i18nerr.go
diff options
context:
space:
mode:
Diffstat (limited to 'i18nerr/i18nerr.go')
-rw-r--r--i18nerr/i18nerr.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/i18nerr/i18nerr.go b/i18nerr/i18nerr.go
index f5d96aa..2b808de 100644
--- a/i18nerr/i18nerr.go
+++ b/i18nerr/i18nerr.go
@@ -29,7 +29,7 @@ func TranslatedInner(inner error) (string, bool) {
var tErr *http.TimeoutError
switch {
case errors.As(inner, &tErr):
- return printerOrNew(language.English).Sprintf("timeout reached for URL: '%s' and HTTP method: '%s'", tErr.URL, tErr.Method), false
+ return printerOrNew(language.English).Sprintf("Timeout reached contacting URL: '%s'", tErr.URL), false
case errors.Is(inner, context.Canceled):
return unwrapped.Error(), true
}