From e70570c5f94d60c7456317130ed7daf9872783c3 Mon Sep 17 00:00:00 2001 From: George Gastaldi Date: Fri, 3 Oct 2025 09:40:09 -0300 Subject: [PATCH] Change logging level to `DEBUG` for platform cache updates This will avoid cluttering the logs --- base/src/main/java/io/quarkus/code/service/PlatformService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/src/main/java/io/quarkus/code/service/PlatformService.java b/base/src/main/java/io/quarkus/code/service/PlatformService.java index 1c1d89e84..1158de91f 100644 --- a/base/src/main/java/io/quarkus/code/service/PlatformService.java +++ b/base/src/main/java/io/quarkus/code/service/PlatformService.java @@ -217,7 +217,7 @@ private void reloadPlatformServiceCache() throws RegistryResolutionException, IO } if (platformServiceCacheRef.get() != null && platformServiceCacheRef.get().platformTimestamp().equals(platformTimestamp)) { - LOG.log(Level.INFO, "The platform cache is up to date with the registry"); + LOG.log(Level.DEBUG, "The platform cache is up to date with the registry"); return; } Collection platforms = platformCatalog.getPlatforms();