Skip to content

Commit

Permalink
log cleanup #3921
Browse files Browse the repository at this point in the history
  • Loading branch information
rbhatta99 committed Aug 18, 2017
1 parent 1e46be7 commit 57e8c30
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 @@ -1017,7 +1017,7 @@ public boolean isThumbnailAvailable (DataFile file) {
// If this file already has the "thumbnail generated" flag set,
// we'll just trust that:
if (file.isPreviewImageAvailable()) {
logger.info("returning true");
logger.fine("returning true");
return true;
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/edu/harvard/iq/dataverse/DatasetPage.java
Original file line number Diff line number Diff line change
Expand Up @@ -1189,7 +1189,7 @@ private String init(boolean initFull) {
retrieveDatasetVersionResponse = datasetVersionService.selectRequestedVersion(dataset.getVersions(), version);
//retrieveDatasetVersionResponse = datasetVersionService.retrieveDatasetVersionByPersistentId(persistentId, version);
this.workingVersion = retrieveDatasetVersionResponse.getDatasetVersion();
logger.info("retrieved version: id: " + workingVersion.getId() + ", state: " + this.workingVersion.getVersionState());
logger.fine("retrieved version: id: " + workingVersion.getId() + ", state: " + this.workingVersion.getVersionState());

} else if (dataset.getId() != null) {
// Set Working Version and Dataset by Datasaet Id and Version
Expand Down

0 comments on commit 57e8c30

Please sign in to comment.