-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Describe the enhancement
Currently, cache always outputs lots of logs for every stored cache entry:
toolkit/packages/cache/src/cache.ts
Lines 321 to 332 in 2506e78
| core.info( | |
| `Cache Size: ~${Math.round( | |
| archiveFileSize / (1024 * 1024) | |
| )} MB (${archiveFileSize} B)` | |
| ) | |
| if (core.isDebug()) { | |
| await listTar(archivePath, compressionMethod) | |
| } | |
| await extractTar(archivePath, compressionMethod) | |
| core.info('Cache restored successfully') |
If cache action is wrapped in another action (such as burrunan/gradle-cache-action#139), where cache is invoked lots of times, it can create very verbose output.
Could we add an input parameter that disables those logs?
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request