mirror of https://github.com/apache/openjpa.git
Refrain from logging if verifying log factory plugin.
git-svn-id: https://svn.apache.org/repos/asf/openjpa/branches/1.1.x@1481682 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
521fecd2d9
commit
743875048a
|
@ -20,6 +20,7 @@ package org.apache.openjpa.lib.conf;
|
|||
|
||||
import org.apache.commons.lang.StringUtils;
|
||||
import org.apache.openjpa.lib.log.Log;
|
||||
import org.apache.openjpa.lib.log.LogFactory;
|
||||
import org.apache.openjpa.lib.util.Localizer;
|
||||
import org.apache.openjpa.lib.util.ParseException;
|
||||
|
||||
|
@ -105,7 +106,8 @@ public class PluginValue extends ObjectValue {
|
|||
|
||||
// ensure plugin value is compatible with plugin type
|
||||
if (obj != null && !type.isAssignableFrom(obj.getClass())) {
|
||||
Log log = (conf == null) ? null : conf.getConfigurationLog();
|
||||
Log log = (conf == null || type.equals(LogFactory.class))
|
||||
? null : conf.getConfigurationLog();
|
||||
String msg = getIncompatiblePluginMessage(obj, type);
|
||||
if (log != null && log.isErrorEnabled()) {
|
||||
log.error(msg);
|
||||
|
|
Loading…
Reference in New Issue