Author: jrbauer
Date: Sat May 11 00:32:21 2013
New Revision: 1481243

URL: http://svn.apache.org/r1481243
Log:
Refrain from logging if verifying log factory plugin.

Modified:
    
openjpa/branches/2.2.x/openjpa-lib/src/main/java/org/apache/openjpa/lib/conf/PluginValue.java

Modified: 
openjpa/branches/2.2.x/openjpa-lib/src/main/java/org/apache/openjpa/lib/conf/PluginValue.java
URL: 
http://svn.apache.org/viewvc/openjpa/branches/2.2.x/openjpa-lib/src/main/java/org/apache/openjpa/lib/conf/PluginValue.java?rev=1481243&r1=1481242&r2=1481243&view=diff
==============================================================================
--- 
openjpa/branches/2.2.x/openjpa-lib/src/main/java/org/apache/openjpa/lib/conf/PluginValue.java
 (original)
+++ 
openjpa/branches/2.2.x/openjpa-lib/src/main/java/org/apache/openjpa/lib/conf/PluginValue.java
 Sat May 11 00:32:21 2013
@@ -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;
 
@@ -106,7 +107,7 @@ public class PluginValue extends ObjectV
         
         // 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);


Reply via email to