Skip to content

Commit e70570c

Browse files
committed
Change logging level to DEBUG for platform cache updates
This will avoid cluttering the logs
1 parent 8d8ba50 commit e70570c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

base/src/main/java/io/quarkus/code/service/PlatformService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ private void reloadPlatformServiceCache() throws RegistryResolutionException, IO
217217
}
218218
if (platformServiceCacheRef.get() != null
219219
&& platformServiceCacheRef.get().platformTimestamp().equals(platformTimestamp)) {
220-
LOG.log(Level.INFO, "The platform cache is up to date with the registry");
220+
LOG.log(Level.DEBUG, "The platform cache is up to date with the registry");
221221
return;
222222
}
223223
Collection<Platform> platforms = platformCatalog.getPlatforms();

0 commit comments

Comments
 (0)