From a74119038f711b77dc12f290e42b97a02e83dc57 Mon Sep 17 00:00:00 2001 From: Charles Gagnon Date: Tue, 8 Dec 2020 08:42:45 -0800 Subject: [PATCH] Use console.log for retry logging (#13722) --- build/azure-pipelines/common/publish.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/azure-pipelines/common/publish.ts b/build/azure-pipelines/common/publish.ts index 46413f244d..eda52041cc 100644 --- a/build/azure-pipelines/common/publish.ts +++ b/build/azure-pipelines/common/publish.ts @@ -259,7 +259,7 @@ async function retry(fn: () => Promise): Promise { if (!/ECONNRESET/.test(err.message)) { throw err; } - console.warn(`Caught error ${err} - ${run}/${RETRY_TIMES}`); + console.log(`Caught error ${err} - ${run}/${RETRY_TIMES}`); } }