Author: dkulp Date: Mon Nov 22 18:21:54 2010 New Revision: 1037817 URL: http://svn.apache.org/viewvc?rev=1037817&view=rev Log: Merged revisions 1036593 via svnmerge from https://svn.apache.org/repos/asf/cxf/branches/2.3.x-fixes
................ r1036593 | dkulp | 2010-11-18 14:56:28 -0500 (Thu, 18 Nov 2010) | 10 lines Merged revisions 1036588 via svnmerge from https://svn.apache.org/repos/asf/cxf/trunk ........ r1036588 | dkulp | 2010-11-18 14:38:51 -0500 (Thu, 18 Nov 2010) | 2 lines Change to FINE logging as not having the old xfire classes is actually the norm ........ ................ Modified: cxf/branches/2.2.x-fixes/ (props changed) cxf/branches/2.2.x-fixes/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/java5/AnnotationReader.java Propchange: cxf/branches/2.2.x-fixes/ ------------------------------------------------------------------------------ Binary property 'svnmerge-integrated' - no diff available. Modified: cxf/branches/2.2.x-fixes/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/java5/AnnotationReader.java URL: http://svn.apache.org/viewvc/cxf/branches/2.2.x-fixes/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/java5/AnnotationReader.java?rev=1037817&r1=1037816&r2=1037817&view=diff ============================================================================== --- cxf/branches/2.2.x-fixes/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/java5/AnnotationReader.java (original) +++ cxf/branches/2.2.x-fixes/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/java5/AnnotationReader.java Mon Nov 22 18:21:54 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; } }
