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

Commit

Permalink
JERSEY-2728: adjusting log level of logged exception.
Browse files Browse the repository at this point in the history
+ minor formatting fix.

Change-Id: I2aa9db2bfbb04b70f6c4ff9825642af04bb4d1d9
  • Loading branch information
pavelbucek committed Feb 12, 2016
1 parent 62a894b commit d9e6cf3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -554,10 +554,10 @@ public void writeEntity() throws IOException {
commitStream();
} catch (final IOException e) {
ExceptionUtils.conditionallyReThrow(e, !runtimeException, LOGGER,
LocalizationMessages.ERROR_COMMITTING_OUTPUT_STREAM(), Level.SEVERE);
LocalizationMessages.ERROR_COMMITTING_OUTPUT_STREAM(), Level.FINE);
} catch (final RuntimeException e) {
ExceptionUtils.conditionallyReThrow(e, !runtimeException, LOGGER,
LocalizationMessages.ERROR_COMMITTING_OUTPUT_STREAM(), Level.SEVERE);
LocalizationMessages.ERROR_COMMITTING_OUTPUT_STREAM(), Level.FINE);
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
import org.glassfish.jersey.server.ParamException;

/**
* * A parameter-based exception for errors with {@link FormDataParam}.
* A parameter-based exception for errors with {@link FormDataParam}.
*
* @author Pavel Bucek (pavel.bucek at oracle.com)
*/
Expand Down

0 comments on commit d9e6cf3

Please sign in to comment.