You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by cz...@apache.org on 2022/02/04 09:44:41 UTC

[sling-org-apache-sling-servlets-resolver] branch master updated: SLING-11120 : Reduce log output from BundledScriptTracker

This is an automated email from the ASF dual-hosted git repository.

cziegeler pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-servlets-resolver.git


The following commit(s) were added to refs/heads/master by this push:
     new b3d4286  SLING-11120 : Reduce log output from BundledScriptTracker
b3d4286 is described below

commit b3d4286b857df18b244b2446be95abaf1a6575b3
Author: Carsten Ziegeler <cz...@apache.org>
AuthorDate: Fri Feb 4 10:44:32 2022 +0100

    SLING-11120 : Reduce log output from BundledScriptTracker
---
 .../sling/servlets/resolver/internal/bundle/BundledScriptTracker.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/sling/servlets/resolver/internal/bundle/BundledScriptTracker.java b/src/main/java/org/apache/sling/servlets/resolver/internal/bundle/BundledScriptTracker.java
index 62f8726..2519657 100644
--- a/src/main/java/org/apache/sling/servlets/resolver/internal/bundle/BundledScriptTracker.java
+++ b/src/main/java/org/apache/sling/servlets/resolver/internal/bundle/BundledScriptTracker.java
@@ -284,7 +284,7 @@ public class BundledScriptTracker implements BundleTrackerCustomizer<List<Servic
                             register(bundle.getBundleContext(), new BundledScriptServlet(inheritanceChain, executable), properties)
                         );
                     } else {
-                        LOGGER.warn(String.format("Unable to locate an executable for capability %s.", bundledRenderUnitCapability.toString()));
+                        LOGGER.debug(String.format("Unable to locate an executable for capability %s.", bundledRenderUnitCapability.toString()));
                     }
 
                     return regs.stream();