use log.warn() for PERFORMANCE WARNING

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1332376 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ryan McKinley 2012-04-30 20:44:03 +00:00
parent a5faa50193
commit e95db84bec
1 changed files with 1 additions and 1 deletions

View File

@ -1252,7 +1252,7 @@ public final class SolrCore implements SolrInfoMBean {
// HTTP 503==service unavailable, or 409==Conflict
throw new SolrException(SolrException.ErrorCode.SERVICE_UNAVAILABLE,msg);
} else if (onDeckSearchers > 1) {
log.info(logid+"PERFORMANCE WARNING: Overlapping onDeckSearchers=" + onDeckSearchers);
log.warn(logid+"PERFORMANCE WARNING: Overlapping onDeckSearchers=" + onDeckSearchers);
}
}