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:
Shalin Shekhar Mangar 2009-12-08 07:00:15 +00:00
parent 49f7d906b1
commit 89aa50f022
1 changed files with 1 additions and 1 deletions

View File

@ -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 ) {