mirror of https://github.com/apache/lucene.git
SOLR-1620 -- Fixed misleading log message "created null"
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@888282 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
49f7d906b1
commit
89aa50f022
|
@ -139,7 +139,7 @@ public abstract class AbstractPluginLoader<T>
|
|||
String defaultStr = DOMUtil.getAttr(node,"default", null );
|
||||
|
||||
T plugin = create(loader, name, className, node );
|
||||
log.info("created "+name+": " + plugin.getClass().getName() );
|
||||
log.info("created " + ((name != null) ? name : "") + ": " + plugin.getClass().getName());
|
||||
|
||||
// Either initialize now or wait till everything has been registered
|
||||
if( preRegister ) {
|
||||
|
|
Loading…
Reference in New Issue