Skip to content

Commit e8609ff

Browse files
authored
Change logging level to FINE for platform cache updates (#1688)
* Change logging level to `DEBUG` for platform cache updates This will avoid cluttering the logs * Change log level from DEBUG to FINE
1 parent 665b424 commit e8609ff

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
@@ -219,7 +219,7 @@ private void reloadPlatformServiceCache() throws RegistryResolutionException, IO
219219
}
220220
if (platformServiceCacheRef.get() != null
221221
&& platformServiceCacheRef.get().platformTimestamp().equals(platformTimestamp)) {
222-
LOG.log(Level.INFO, "The platform cache is up to date with the registry");
222+
LOG.log(Level.FINE, "The platform cache is up to date with the registry");
223223
return;
224224
}
225225
Collection<Platform> platforms = platformCatalog.getPlatforms();

0 commit comments

Comments
 (0)