Skip to content

Commit

Permalink
Reduce log level for "normal" HTTP API operations
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeer committed May 7, 2014
1 parent 92ce4ca commit 0de30c8
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 0de30c8

Please sign in to comment.