Skip to content

Commit

Permalink
cleanup log messages #3921
Browse files Browse the repository at this point in the history
  • Loading branch information
rbhatta99 committed Aug 18, 2017
1 parent 57e8c30 commit b960a07
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ public void deleteAllAuxObjects() throws IOException {
}
multiObjectDeleteRequest.setKeys(keys);

logger.info("Trying to delete auxiliary files...");
logger.fine("Trying to delete auxiliary files...");
try {
s3.deleteObjects(multiObjectDeleteRequest);
} catch (MultiObjectDeleteException e) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ public Dataset save(CommandContext ctxt) throws CommandException {

// check if this file is being used as the default thumbnail
if (fmd.getDataFile().equals(theDataset.getThumbnailFile())) {
logger.info("deleting the dataset thumbnail designation");
logger.fine("deleting the dataset thumbnail designation");
theDataset.setThumbnailFile(null);
}

Expand Down

0 comments on commit b960a07

Please sign in to comment.