From f46290e9e094b5c53f43bc5b3c223bb87b283cf2 Mon Sep 17 00:00:00 2001 From: Chris Trombley Date: Thu, 13 May 2021 14:36:43 -0700 Subject: [PATCH] chore(diagnose): update error messages --- internal/diagnose/command_validate.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/diagnose/command_validate.go b/internal/diagnose/command_validate.go index 5372b5351..155e98727 100644 --- a/internal/diagnose/command_validate.go +++ b/internal/diagnose/command_validate.go @@ -26,10 +26,10 @@ data to the New Relic platform and verifying that it has been received.`, log.Fatal("Failed to detect your system's hostname. Please contact New Relic support.") } if err == ErrPostEvent { - log.Fatal("There was a failure posting data to New Relic. This could be ") + log.Fatal("There was a failure posting data to New Relic.") } if err == ErrValidation { - log.Fatal("validation failed!") + log.Fatal("There was a failure locating the data that was posted to New Relic.") } log.Fatal(err)