Repository: cxf Updated Branches: refs/heads/3.0.x-fixes b44edf139 -> 3ebaf8501
[CXF-7327] Relaxing a log level to 'warning' Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/3ebaf850 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/3ebaf850 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/3ebaf850 Branch: refs/heads/3.0.x-fixes Commit: 3ebaf85011d820e278f146def18e87bf8e014fb6 Parents: b44edf1 Author: Sergey Beryozkin <[email protected]> Authored: Tue Apr 18 16:04:43 2017 +0100 Committer: Sergey Beryozkin <[email protected]> Committed: Tue Apr 18 16:16:50 2017 +0100 ---------------------------------------------------------------------- .../main/java/org/apache/cxf/jaxrs/utils/InjectionUtils.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/3ebaf850/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/utils/InjectionUtils.java ---------------------------------------------------------------------- diff --git a/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/utils/InjectionUtils.java b/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/utils/InjectionUtils.java index f6b2bfc..ee8839c 100644 --- a/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/utils/InjectionUtils.java +++ b/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/utils/InjectionUtils.java @@ -426,8 +426,8 @@ public final class InjectionUtils { throw ex; } catch (Exception ex) { Throwable t = getOrThrowActualException(ex); - LOG.severe(new org.apache.cxf.common.i18n.Message("CLASS_CONSTRUCTOR_FAILURE", - BUNDLE, + LOG.warning(new org.apache.cxf.common.i18n.Message("CLASS_CONSTRUCTOR_FAILURE", + BUNDLE, pClass.getName()).toString()); Response r = JAXRSUtils.toResponse(HttpUtils.getParameterFailureStatus(pType)); throw ExceptionUtils.toHttpException(t, r); @@ -523,8 +523,8 @@ public final class InjectionUtils { } if (factoryMethodEx != null) { Throwable t = getOrThrowActualException(factoryMethodEx); - LOG.severe(new org.apache.cxf.common.i18n.Message("CLASS_VALUE_OF_FAILURE", - BUNDLE, + LOG.warning(new org.apache.cxf.common.i18n.Message("CLASS_VALUE_OF_FAILURE", + BUNDLE, cls.getName()).toString()); throw new WebApplicationException(t, HttpUtils.getParameterFailureStatus(pType)); } else {
