Skip to content

Commit 8c05dc8

Browse files
authored
Change info logs to debug logs
1 parent 3726c11 commit 8c05dc8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/artifact/src/internal/download/download-artifact.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,8 +227,8 @@ export async function downloadArtifactInternal(
227227
if (options?.expectedHash) {
228228
if (options?.expectedHash !== extractResponse.sha256Digest) {
229229
digestMismatch = true
230-
core.info(`Computed digest: ${extractResponse.sha256Digest}`)
231-
core.info(`Expected digest: ${options.expectedHash}`)
230+
core.debug(`Computed digest: ${extractResponse.sha256Digest}`)
231+
core.debug(`Expected digest: ${options.expectedHash}`)
232232
}
233233
}
234234
} catch (error) {

0 commit comments

Comments
 (0)