Skip to content

Commit

Permalink
Merge pull request #348 from futures/log-levels
Browse files Browse the repository at this point in the history
Reduce log level for "normal" HTTP API operations

Resolves: https://www.pivotaltracker.com/story/show/70816006
  • Loading branch information
Andrew Woods committed May 7, 2014
2 parents 92ce4ca + 0de30c8 commit f2057e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -114,7 +114,7 @@ public Response create(@PathParam("path")
}


LOGGER.debug("Attempting to ingest fcr:content with path: {}", newDatastreamPath);
LOGGER.trace("Attempting to ingest fcr:content with path: {}", newDatastreamPath);

try {

Expand Down
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 f2057e1

Please sign in to comment.