Skip to content

Commit

Permalink
PathNotFoundExceptionMapper should use the DEBUG log level
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeer committed May 7, 2014
1 parent 92ce4ca commit 81c3df9
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -41,7 +41,7 @@ public class PathNotFoundExceptionMapper implements

@Override
public Response toResponse(final PathNotFoundException e) {
LOGGER.info(e.getMessage());
LOGGER.debug(e.getMessage());
return status(NOT_FOUND).build();
}

Expand Down

0 comments on commit 81c3df9

Please sign in to comment.