Skip to content

Commit

Permalink
removed some verbose logging from the dataset page bean.
Browse files Browse the repository at this point in the history
  • Loading branch information
landreev committed Oct 22, 2015
1 parent 835c7d0 commit 3ae2013
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/edu/harvard/iq/dataverse/DatasetPage.java
Original file line number Diff line number Diff line change
Expand Up @@ -494,9 +494,9 @@ public boolean canViewUnpublishedDataset() {
* every time; it doesn't do any new db lookups.
*/
public boolean isSessionUserAuthenticated() {
logger.info("entering isSessionUserAuthenticated;");
logger.fine("entering isSessionUserAuthenticated;");
if (sessionUserAuthenticated != null) {
logger.info("using cached isSessionUserAuthenticated;");
logger.fine("using cached isSessionUserAuthenticated;");

return sessionUserAuthenticated;
}
Expand Down

0 comments on commit 3ae2013

Please sign in to comment.