Author: dkulp
Date: Thu Nov 18 19:56:28 2010
New Revision: 1036593
URL: http://svn.apache.org/viewvc?rev=1036593&view=rev
Log:
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.3.x-fixes/ (props changed)
cxf/branches/2.3.x-fixes/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/java5/AnnotationReader.java
Propchange: cxf/branches/2.3.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.
Modified:
cxf/branches/2.3.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.3.x-fixes/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/java5/AnnotationReader.java?rev=1036593&r1=1036592&r2=1036593&view=diff
==============================================================================
---
cxf/branches/2.3.x-fixes/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/java5/AnnotationReader.java
(original)
+++
cxf/branches/2.3.x-fixes/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/java5/AnnotationReader.java
Thu Nov 18 19:56:28 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;
}
}