From e70570c5f94d60c7456317130ed7daf9872783c3 Mon Sep 17 00:00:00 2001 From: George Gastaldi Date: Fri, 3 Oct 2025 09:40:09 -0300 Subject: [PATCH 1/2] 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(); From edbbd52e0ac636a755712e5c69619f72338ba05c Mon Sep 17 00:00:00 2001 From: George Gastaldi Date: Tue, 25 Nov 2025 15:26:09 -0300 Subject: [PATCH 2/2] Change log level from DEBUG to FINE --- 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 1158de91f..16c6fc55c 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.DEBUG, "The platform cache is up to date with the registry"); + LOG.log(Level.FINE, "The platform cache is up to date with the registry"); return; } Collection platforms = platformCatalog.getPlatforms();