Skip to content

Commit

Permalink
Merge pull request #9711 from IQSS/reduce-logging
Browse files Browse the repository at this point in the history
reduce logging and fix typo
  • Loading branch information
kcondon authored Jul 17, 2023
2 parents 0661c3a + f29fb82 commit dde0879
Showing 1 changed file with 1 addition and 1 deletion.
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 @@ -1891,7 +1891,7 @@ private String init(boolean initFull) {
//retrieveDatasetVersionResponse = datasetVersionService.retrieveDatasetVersionById(dataset.getId(), version);
retrieveDatasetVersionResponse = datasetVersionService.selectRequestedVersion(dataset.getVersions(), version);
this.workingVersion = retrieveDatasetVersionResponse.getDatasetVersion();
logger.info("retreived version: id: " + workingVersion.getId() + ", state: " + this.workingVersion.getVersionState());
logger.fine("retrieved version: id: " + workingVersion.getId() + ", state: " + this.workingVersion.getVersionState());

} else if (versionId != null) {
// TODO: 4.2.1 - this method is broken as of now!
Expand Down

0 comments on commit dde0879

Please sign in to comment.