From d681750ba209e1eb081284b04fe688f06c8b19cf Mon Sep 17 00:00:00 2001 From: Hugo Di Francesco Date: Mon, 13 Jan 2020 15:46:03 +0000 Subject: [PATCH] change wording of output --- scripts/data-validate.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/data-validate.js b/scripts/data-validate.js index e3b74ad1..b823fc17 100644 --- a/scripts/data-validate.js +++ b/scripts/data-validate.js @@ -59,12 +59,12 @@ async function isWorkingUrl(url) { try { const statusCode = await getStatusCode(url); if (statusCode < 200 || statusCode >= 300) { - core.error(`URL: "${url}" failed with status: ${statusCode}`); + core.error(`Ping to "${url}" failed with status: ${statusCode}`); return false; } return true; } catch (e) { - core.error(`URL: "${url}" failed with error: ${e}`); + core.error(`Ping to "${url}" failed with error: ${e}`); return false; } }