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

epugh pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/solr.git


The following commit(s) were added to refs/heads/main by this push:
     new cfe456a1785 SOLR-11373: Enable infoStream logging (#3910)
cfe456a1785 is described below

commit cfe456a17851b1df8d3a8837667e3b69129d2c96
Author: Eric Pugh <[email protected]>
AuthorDate: Sun Nov 30 18:09:19 2025 -0500

    SOLR-11373: Enable infoStream logging (#3910)
    
    Writing to this logger is now controlled by the infoStream property in 
solrconfig.xml and is specific to core/collection.
---
 changelog/unreleased/SOLR-11373.yml | 8 ++++++++
 solr/server/resources/log4j2.xml    | 2 +-
 2 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/changelog/unreleased/SOLR-11373.yml 
b/changelog/unreleased/SOLR-11373.yml
new file mode 100644
index 00000000000..2964fb41c94
--- /dev/null
+++ b/changelog/unreleased/SOLR-11373.yml
@@ -0,0 +1,8 @@
+# See https://github.com/apache/solr/blob/main/dev-docs/changelog.adoc
+title: Restore actual infoStream logging when infoStream in solrconfig.xml is 
set to true.
+type: fixed # added, changed, fixed, deprecated, removed, dependency_update, 
security, other
+authors:
+  - name: Eric Pugh
+links:
+  - name: SOLR-11373
+    url: https://issues.apache.org/jira/browse/SOLR-11373
diff --git a/solr/server/resources/log4j2.xml b/solr/server/resources/log4j2.xml
index 049c9e5e7ab..1d70770b73a 100644
--- a/solr/server/resources/log4j2.xml
+++ b/solr/server/resources/log4j2.xml
@@ -63,7 +63,7 @@
   </Appenders>
   <Loggers>
     <!-- Use <AsyncLogger/<AsyncRoot and <Logger/<Root for asynchronous 
logging or synchronous logging respectively -->
-    <AsyncLogger name="org.apache.solr.update.LoggingInfoStream" level="off"/>
+    <AsyncLogger name="org.apache.solr.update.LoggingInfoStream" level="info"/>
     <AsyncLogger name="org.apache.zookeeper" level="warn"/>
     <!-- HttpSolrCall adds markers denoting the handler class to allow fine 
grained control, metrics are
          very noisy so by default the metrics handler is turned off to see 
metrics logging set DENY to ACCEPT -->

Reply via email to