Skip to content

Commit 9849f6b

Browse files
replace console.warn with logger.warn (#216)
1 parent 9ba58ef commit 9849f6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libraries/Downloader.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ export function downloadBinary(binaryInfo: BinaryInfo, options: InternalServerOp
354354
//Only reject if we have met the downloadRetries limit
355355
return reject(e)
356356
} else {
357-
console.warn(`An error was encountered during the binary download process. Retrying for retry ${downloadTries}/${options.downloadRetries}. The error was:`, e)
357+
logger.warn(`An error was encountered during the binary download process. Retrying for retry ${downloadTries}/${options.downloadRetries}. The error was:`, e)
358358
}
359359
}
360360
} while (downloadTries <= options.downloadRetries)

0 commit comments

Comments
 (0)