Skip to content

Commit f06e1e4

Browse files
committed
log
1 parent f3e878f commit f06e1e4

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/caching/github-actions-cache.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -413,6 +413,10 @@ ${blockIds.map((blockId) => ` <Committed>${blockId}</Committed>`).join('\n')}
413413
if (!this.#maybeHandleServiceDown(r, script)) {
414414
return false;
415415
}
416+
let responseData = '';
417+
r.value.on('data', (chunk: string) => (responseData += chunk));
418+
await new Promise((resolve) => r.value.on('end', resolve));
419+
console.log('DONE', r.value.statusCode, responseData);
416420
return true;
417421
} finally {
418422
await tarballHandle.close();

0 commit comments

Comments
 (0)