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:32:03 UTC

[cxf] branch master 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 master
in repository https://gitbox.apache.org/repos/asf/cxf.git


The following commit(s) were added to refs/heads/master by this push:
     new 0108020  Changing log level to severe if JAXB Context can not be created
0108020 is described below

commit 010802046bf7520f6ad716c8b5eef5fe679cf6d7
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 5e93b5f..39da136 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
@@ -992,7 +992,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>'].