mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
build: do not excessively log response bodies
This commit is contained in:
@@ -25,13 +25,13 @@ async function getAssetContents (repo, assetId) {
|
||||
headers
|
||||
});
|
||||
if (!response.headers.location) {
|
||||
console.error(response.headers, response.body);
|
||||
console.error(response.headers, `${response.body}`.slice(0, 300));
|
||||
throw new Error(`cannot find asset[${assetId}], asset download did not redirect`);
|
||||
}
|
||||
|
||||
const fileResponse = await got(response.headers.location);
|
||||
if (fileResponse.status !== 200) {
|
||||
console.error(fileResponse.headers, fileResponse.body);
|
||||
console.error(fileResponse.headers, `${fileResponse.body}`.slice(0, 300));
|
||||
throw new Error(`cannot download asset[${assetId}] from ${response.headers.location}, got status: ${fileResponse.status}`);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user