Repository: cxf Updated Branches: refs/heads/3.1.x-fixes c1567e3f4 -> a78c5891a
[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/a78c5891 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/a78c5891 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/a78c5891 Branch: refs/heads/3.1.x-fixes Commit: a78c5891ad5619893da08e1aea254fa25dd2763e Parents: c1567e3 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:07 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/a78c5891/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 dd143c2..73b3e56 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 @@ -443,8 +443,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); @@ -540,8 +540,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 {
