Skip to content

Commit 1c3cac1

Browse files
committed
fix: improve logging around failed cumulative updates
1 parent 0cf843e commit 1c3cac1

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

lib/main/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/utils.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,9 +194,12 @@ export async function downloadUpdateInstaller(config: VersionConfig): Promise<st
194194
if (link) {
195195
downloadLink = link;
196196
}
197+
core.info('Unable to find download link in body');
198+
core.debug(body);
197199
}
198200
if (!downloadLink) {
199201
core.warning('Unable to download cumulative updates');
202+
core.info(`Response code: ${res.message.statusCode}`);
200203
return '';
201204
}
202205
}

0 commit comments

Comments
 (0)