I use log4j.properties
with a Solr 5.2. My Solr is working in the production environment so I do not want to restart it unless it's really necessary.
What I changed:
log4j.appender.file=org.apache.log4j.RollingFileAppender
to:
log4j.appender.APP=path.to.class.CustomRollingFileAppender
log4j.appender.APP.DatePattern='.'yyyy-MM-dd
log4j.appender.APP.TimeInterval=1
I would like Solr to use the changed log4j.properties
file without Solr process restarted.
Is it possible?