mirror of https://github.com/apache/lucene.git
SOLR-11562: Restore Solr ASCII-art in log at startup by removing Default config logging
This commit is contained in:
parent
f1a6b68d75
commit
b44497fdb7
solr
|
@ -111,6 +111,8 @@ Other Changes
|
|||
* SOLR-11165: Ref guide documentation for Autoscaling APIs, triggers, listeners, actions for Solr 7.1
|
||||
(ab, Cassandra Targett, Noble Paul, shalin)
|
||||
|
||||
* SOLR-11562: Restore Solr logo ASCII-art in startup log by removing unnecessary default confdir logging (janhoy)
|
||||
|
||||
================== 7.1.0 ==================
|
||||
|
||||
Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release.
|
||||
|
|
|
@ -229,7 +229,7 @@ public class SolrDispatchFilter extends BaseSolrFilter {
|
|||
private void logWelcomeBanner() {
|
||||
log.info(" ___ _ Welcome to Apache Solr™ version {}", solrVersion());
|
||||
log.info("/ __| ___| |_ _ Starting in {} mode on port {}", isCloudMode() ? "cloud" : "standalone", getSolrPort());
|
||||
log.info("\\__ \\/ _ \\ | '_| Install dir: {}, Default config dir: {}", System.getProperty(SOLR_INSTALL_DIR_ATTRIBUTE), System.getProperty(SOLR_DEFAULT_CONFDIR_ATTRIBUTE));
|
||||
log.info("\\__ \\/ _ \\ | '_| Install dir: {}", System.getProperty(SOLR_INSTALL_DIR_ATTRIBUTE));
|
||||
log.info("|___/\\___/_|_| Start time: {}", Instant.now().toString());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue