Skip to content

Commit

Permalink
Quiet down logs of observability DevResources
Browse files Browse the repository at this point in the history
  • Loading branch information
geoand committed Sep 26, 2024
1 parent 4445884 commit 97d1454
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class DevResources {
*/
public static synchronized List<DevResourceLifecycleManager> resources() {
if (resources == null) {
log.info("Activating dev resources");
log.debug("Activating dev resources");

resources = ServiceLoader
.load(DevResourceLifecycleManager.class, Thread.currentThread().getContextClassLoader())
Expand All @@ -34,7 +34,7 @@ public static synchronized List<DevResourceLifecycleManager> resources() {
.sorted(Comparator.comparing(DevResourceLifecycleManager::order))
.collect(Collectors.toList());

log.infof("Found dev resources: %s", resources);
log.debugf("Found dev resources: %s", resources);
}
return resources;
}
Expand Down

0 comments on commit 97d1454

Please sign in to comment.