Repository: cxf Updated Branches: refs/heads/master 06a7b75e0 -> 5e17bc043
[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/5e17bc04 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/5e17bc04 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/5e17bc04 Branch: refs/heads/master Commit: 5e17bc043723353937ee7f1f9ac1c51c83b74679 Parents: 06a7b75 Author: Sergey Beryozkin <[email protected]> Authored: Tue Apr 18 16:04:43 2017 +0100 Committer: Sergey Beryozkin <[email protected]> Committed: Tue Apr 18 16:04:43 2017 +0100 ---------------------------------------------------------------------- .../src/main/java/org/apache/cxf/jaxrs/utils/InjectionUtils.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/5e17bc04/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 334a464..a038422 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 @@ -470,7 +470,7 @@ 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", + LOG.warning(new org.apache.cxf.common.i18n.Message("CLASS_CONSTRUCTOR_FAILURE", BUNDLE, pClass.getName()).toString()); Response r = JAXRSUtils.toResponse(HttpUtils.getParameterFailureStatus(pType)); @@ -567,7 +567,7 @@ public final class InjectionUtils { } if (factoryMethodEx != null) { Throwable t = getOrThrowActualException(factoryMethodEx); - LOG.severe(new org.apache.cxf.common.i18n.Message("CLASS_VALUE_OF_FAILURE", + LOG.warning(new org.apache.cxf.common.i18n.Message("CLASS_VALUE_OF_FAILURE", BUNDLE, cls.getName()).toString()); throw new WebApplicationException(t, HttpUtils.getParameterFailureStatus(pType));
