Skip to content

Commit 8155c72

Browse files
committed
feat: difference between states logged as info instead of lifecycle
Fixes #368
1 parent 9f7f19b commit 8155c72

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/groovy/com/avast/gradle/dockercompose/ServiceInfoCache.groovy

+2-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ abstract class ServiceInfoCache implements BuildService<Parameters> {
4747
if (cachedState == currentState) {
4848
return deserialized.collectEntries { k, v -> [k, deserializeServiceInfo(v)] }
4949
} else {
50-
logger.lifecycle("Current and cached states differs, cannot use the cached service infos.\nCached state:\n$cachedState\nCurrent state:\n$currentState")
50+
logger.lifecycle("Current and cached states differs, cannot use the cached service infos.")
51+
logger.info("Cached state:\n$cachedState\nCurrent state:\n$currentState")
5152
}
5253
}
5354
return null

0 commit comments

Comments
 (0)