mirror of
https://git.mirrors.martin98.com/https://github.com/actions/toolkit
synced 2026-04-17 01:28:04 +08:00
Add some debugging statements
This commit is contained in:
@@ -213,6 +213,11 @@ export class DownloadHttpClient {
|
|||||||
!received ||
|
!received ||
|
||||||
process.env['ACTIONS_ARTIFACT_SKIP_DOWNLOAD_VALIDATION']
|
process.env['ACTIONS_ARTIFACT_SKIP_DOWNLOAD_VALIDATION']
|
||||||
) {
|
) {
|
||||||
|
if (process.env['ACTIONS_ARTIFACT_SKIP_DOWNLOAD_VALIDATION']) {
|
||||||
|
core.info(
|
||||||
|
'Skipping download validation since environment variable is set'
|
||||||
|
)
|
||||||
|
}
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -231,6 +236,9 @@ export class DownloadHttpClient {
|
|||||||
let response: IHttpClientResponse
|
let response: IHttpClientResponse
|
||||||
try {
|
try {
|
||||||
response = await makeDownloadRequest()
|
response = await makeDownloadRequest()
|
||||||
|
if (core.isDebug()) {
|
||||||
|
displayHttpDiagnostics(response)
|
||||||
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
// if an error is caught, it is usually indicative of a timeout so retry the download
|
// if an error is caught, it is usually indicative of a timeout so retry the download
|
||||||
core.info('An error occurred while attempting to download a file')
|
core.info('An error occurred while attempting to download a file')
|
||||||
|
|||||||
@@ -305,6 +305,9 @@ export async function createEmptyFilesForArtifact(
|
|||||||
|
|
||||||
export async function getFileSize(filePath: string): Promise<number> {
|
export async function getFileSize(filePath: string): Promise<number> {
|
||||||
const stats = await fs.stat(filePath)
|
const stats = await fs.stat(filePath)
|
||||||
|
debug(
|
||||||
|
`${filePath} size:(${stats.size}) blksize:(${stats.blksize}) blocks:(${stats.blocks})`
|
||||||
|
)
|
||||||
return stats.size
|
return stats.size
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user