mirror of
https://github.com/gradle/actions.git
synced 2025-11-26 17:09:10 +08:00
Minor improvement to logging in post-action
- Ensure that "Caching Gradle state" group always has 1 message - Only print cache report when entries were restored or saved
This commit is contained in:
@@ -185,7 +185,7 @@ export abstract class AbstractCache {
|
||||
|
||||
async save(listener: CacheListener): Promise<void> {
|
||||
if (!this.cacheOutputExists()) {
|
||||
this.debug(`No ${this.cacheDescription} to cache.`)
|
||||
core.info(`No ${this.cacheDescription} to cache.`)
|
||||
return
|
||||
}
|
||||
|
||||
@@ -193,7 +193,7 @@ export abstract class AbstractCache {
|
||||
const cacheResult = core.getState(this.cacheResultStateKey)
|
||||
|
||||
if (!cacheKey) {
|
||||
this.debug(`${this.cacheDescription} existed prior to cache restore. Not saving.`)
|
||||
core.info(`${this.cacheDescription} existed prior to cache restore. Not saving.`)
|
||||
return
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user