From 5b3e495fcd4f1b358135a44e4384426a745f7b33 Mon Sep 17 00:00:00 2001 From: Sid Vishnoi Date: Thu, 17 Sep 2020 13:43:01 +0530 Subject: [PATCH] fix(deploy/w3c): log details before link --- deploy-w3c-echidna.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy-w3c-echidna.js b/deploy-w3c-echidna.js index ec55605..ad54fc5 100644 --- a/deploy-w3c-echidna.js +++ b/deploy-w3c-echidna.js @@ -137,8 +137,8 @@ function showErrors(jobs) { const { message, link } = error.extra || {}; const { key, type } = error; console.group(message || key); - if (link) console.log(link); if (type) console.log(type); + if (link) console.log(link); console.groupEnd(); } console.groupEnd();