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:
Jeremy Bauer 2013-05-13 01:43:45 +00:00
parent 521fecd2d9
commit 743875048a
1 changed files with 3 additions and 1 deletions

View File

@ -20,6 +20,7 @@ package org.apache.openjpa.lib.conf;
import org.apache.commons.lang.StringUtils; import org.apache.commons.lang.StringUtils;
import org.apache.openjpa.lib.log.Log; 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.Localizer;
import org.apache.openjpa.lib.util.ParseException; import org.apache.openjpa.lib.util.ParseException;
@ -105,7 +106,8 @@ public class PluginValue extends ObjectValue {
// ensure plugin value is compatible with plugin type // ensure plugin value is compatible with plugin type
if (obj != null && !type.isAssignableFrom(obj.getClass())) { 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); String msg = getIncompatiblePluginMessage(obj, type);
if (log != null && log.isErrorEnabled()) { if (log != null && log.isErrorEnabled()) {
log.error(msg); log.error(msg);