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

snagel pushed a commit to branch branch-1.21
in repository https://gitbox.apache.org/repos/asf/nutch.git

commit cb2f4701516fcb14723fb527bfec1f9ec04feab5
Author: Sebastian Nagel <[email protected]>
AuthorDate: Wed Jul 16 11:11:09 2025 +0200

    NUTCH-3118 Logging pattern missing one argument placeholder
---
 src/java/org/apache/nutch/plugin/PluginRepository.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/java/org/apache/nutch/plugin/PluginRepository.java 
b/src/java/org/apache/nutch/plugin/PluginRepository.java
index dbe8fb68d..bec062521 100644
--- a/src/java/org/apache/nutch/plugin/PluginRepository.java
+++ b/src/java/org/apache/nutch/plugin/PluginRepository.java
@@ -370,7 +370,7 @@ public class PluginRepository implements 
URLStreamHandlerFactory {
       LOG.info("\tNONE");
     } else {
       for (ExtensionPoint ep : this.fExtensionPoints.values()) {
-        LOG.info("\t ({})", ep.getName(), ep.getId());
+        LOG.info("\t{} ({})", ep.getName(), ep.getId());
       }
     }
   }

Reply via email to