Skip to content
This repository was archived by the owner on May 28, 2018. It is now read-only.

Commit ddc0891

Browse files
committed
JERSEY-2728: adjusting log level of logged exception.
+ minor formatting fix. Change-Id: I2aa9db2bfbb04b70f6c4ff9825642af04bb4d1d9
1 parent 7d50683 commit ddc0891

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

core-client/src/main/java/org/glassfish/jersey/client/ClientRequest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -554,10 +554,10 @@ public void writeEntity() throws IOException {
554554
commitStream();
555555
} catch (final IOException e) {
556556
ExceptionUtils.conditionallyReThrow(e, !runtimeException, LOGGER,
557-
LocalizationMessages.ERROR_COMMITTING_OUTPUT_STREAM(), Level.SEVERE);
557+
LocalizationMessages.ERROR_COMMITTING_OUTPUT_STREAM(), Level.FINE);
558558
} catch (final RuntimeException e) {
559559
ExceptionUtils.conditionallyReThrow(e, !runtimeException, LOGGER,
560-
LocalizationMessages.ERROR_COMMITTING_OUTPUT_STREAM(), Level.SEVERE);
560+
LocalizationMessages.ERROR_COMMITTING_OUTPUT_STREAM(), Level.FINE);
561561
}
562562
}
563563
}

media/multipart/src/main/java/org/glassfish/jersey/media/multipart/FormDataParamException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
import org.glassfish.jersey.server.ParamException;
4646

4747
/**
48-
* * A parameter-based exception for errors with {@link FormDataParam}.
48+
* A parameter-based exception for errors with {@link FormDataParam}.
4949
*
5050
* @author Pavel Bucek (pavel.bucek at oracle.com)
5151
*/

0 commit comments

Comments
 (0)