You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2010/11/18 20:38:51 UTC

svn commit: r1036588 - /cxf/trunk/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/java5/AnnotationReader.java

Author: dkulp
Date: Thu Nov 18 19:38:51 2010
New Revision: 1036588

URL: http://svn.apache.org/viewvc?rev=1036588&view=rev
Log:
Change to FINE logging as not having the old xfire classes is actually
the norm

Modified:
    cxf/trunk/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/java5/AnnotationReader.java

Modified: cxf/trunk/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/java5/AnnotationReader.java
URL: http://svn.apache.org/viewvc/cxf/trunk/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/java5/AnnotationReader.java?rev=1036588&r1=1036587&r2=1036588&view=diff
==============================================================================
--- cxf/trunk/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/java5/AnnotationReader.java (original)
+++ cxf/trunk/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/java5/AnnotationReader.java Thu Nov 18 19:38:51 2010
@@ -421,7 +421,7 @@ public class AnnotationReader {
         try {
             return AnnotationReader.class.getClassLoader().loadClass(name).asSubclass(Annotation.class);
         } catch (Throwable e) {
-            LOG.log(Level.WARNING, "Error loading annotation class " + name + ".", e);
+            LOG.log(Level.FINE, "Error loading annotation class " + name + ".", e);
             return null;
         }
     }