You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by se...@apache.org on 2017/10/03 15:34:21 UTC

[cxf] branch 3.1.x-fixes updated: Changing log level to severe if JAXB Context can not be created

This is an automated email from the ASF dual-hosted git repository.

sergeyb pushed a commit to branch 3.1.x-fixes
in repository https://gitbox.apache.org/repos/asf/cxf.git


The following commit(s) were added to refs/heads/3.1.x-fixes by this push:
     new 02a69d8  Changing log level to severe if JAXB Context can not be created
02a69d8 is described below

commit 02a69d82046ccf25a60b0d35bb281f3ad17f6d25
Author: Sergey Beryozkin <sb...@gmail.com>
AuthorDate: Tue Oct 3 16:31:44 2017 +0100

    Changing log level to severe if JAXB Context can not be created
---
 .../jaxrs/src/main/java/org/apache/cxf/jaxrs/utils/ResourceUtils.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/utils/ResourceUtils.java b/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/utils/ResourceUtils.java
index 1cad2c4..1695c04 100644
--- a/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/utils/ResourceUtils.java
+++ b/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/utils/ResourceUtils.java
@@ -994,7 +994,7 @@ public final class ResourceUtils {
                                           contextProperties);
             return ctx;
         } catch (JAXBException ex) {
-            LOG.log(Level.WARNING, "No JAXB context can be created", ex);
+            LOG.log(Level.SEVERE, "No JAXB context can be created", ex);
         }
         return null;
     }

-- 
To stop receiving notification emails like this one, please contact
['"commits@cxf.apache.org" <co...@cxf.apache.org>'].