From 634ea0ab6a60543d712dbc77266059de1d70c08c Mon Sep 17 00:00:00 2001 From: Charles Gagnon Date: Tue, 8 Dec 2020 10:28:02 -0800 Subject: [PATCH] Use console.log for retry logging (#13722) (#13723) (cherry picked from commit a74119038f711b77dc12f290e42b97a02e83dc57) --- 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}`); } }