diff --git a/core-server/src/main/java/org/glassfish/jersey/server/ServerRuntime.java b/core-server/src/main/java/org/glassfish/jersey/server/ServerRuntime.java index 03acedcb17..a68ca7c8fd 100644 --- a/core-server/src/main/java/org/glassfish/jersey/server/ServerRuntime.java +++ b/core-server/src/main/java/org/glassfish/jersey/server/ServerRuntime.java @@ -443,7 +443,7 @@ public void process(final Throwable throwable) { if (!processResponseError(responseError)) { // Pass the exception to the container. - LOGGER.log(Level.FINE, LocalizationMessages.ERROR_EXCEPTION_MAPPING_THROWN_TO_CONTAINER(), responseError); + LOGGER.log(Level.WARNING, LocalizationMessages.ERROR_EXCEPTION_MAPPING_THROWN_TO_CONTAINER(), responseError); try { request.getResponseWriter().failure(responseError); diff --git a/core-server/src/main/resources/org/glassfish/jersey/server/internal/localization.properties b/core-server/src/main/resources/org/glassfish/jersey/server/internal/localization.properties index 3f8f04ae26..a17fb8d96e 100644 --- a/core-server/src/main/resources/org/glassfish/jersey/server/internal/localization.properties +++ b/core-server/src/main/resources/org/glassfish/jersey/server/internal/localization.properties @@ -40,7 +40,7 @@ error.closing.commit.output.stream=Error while closing the output stream in orde error.closing.finder=Error while closing {0} resource finder. error.exception.mapping.original.exception=An exception mapping did not successfully produce and processed a response. Logging the original error. error.exception.mapping.processed.response.error=A response error mapping did not successfully produce and processed a response. -error.exception.mapping.thrown.to.container=An exception mapping did not successfully produce and processed a response. Logging the exception propagated to the container. +error.exception.mapping.thrown.to.container=An exception mapping did not successfully produce and processed a response. Logging the exception propagated to the default exception mapper. error.marshalling.jaxb=Error marshalling JAXB object of type "{0}". error.msg=ERROR: {0} error.monitoring.statistics.generation=Error generating monitoring statistics.