diff --git a/yarn-project/foundation/src/retry/index.ts b/yarn-project/foundation/src/retry/index.ts index bec54c65d7d..ce05747f7da 100644 --- a/yarn-project/foundation/src/retry/index.ts +++ b/yarn-project/foundation/src/retry/index.ts @@ -64,7 +64,7 @@ export async function retry( throw err; } log.verbose(`${name} failed. Will retry in ${s}s...`); - !failSilently && log.error(err); + !failSilently && log.error(`Error while retrying ${name}`, err); await sleep(s * 1000); continue; }