Skip to content

Commit

Permalink
debugging IQSS#8742
Browse files Browse the repository at this point in the history
  • Loading branch information
qqmyers committed Jul 27, 2022
1 parent addece1 commit 981a241
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/edu/harvard/iq/dataverse/DatasetPage.java
Original file line number Diff line number Diff line change
Expand Up @@ -1817,6 +1817,10 @@ private String init(boolean initFull) {
return permissionsWrapper.notFound();
}
logger.fine("retrieved dataset, id="+dataset.getId());
logger.info("Dataset has " + dataset.getVersions().size() + " versions.");
for(DatasetVersion dv: dataset.getVersions()) {
logger.info("Version id: " + dv.getId());
}

retrieveDatasetVersionResponse = datasetVersionService.selectRequestedVersion(dataset.getVersions(), version);
//retrieveDatasetVersionResponse = datasetVersionService.retrieveDatasetVersionByPersistentId(persistentId, version);
Expand Down

0 comments on commit 981a241

Please sign in to comment.