Skip to content

Commit 345d6bc

Browse files
removed logging
1 parent c515223 commit 345d6bc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/woehlke/beachbox/web/VinylController.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public String getAll(@PageableDefaults(pageNumber = 0, value = 30,sort={"interpr
5555
String sort = "";
5656
if(mySort != null) {
5757
sort = page.getSort().toString().split(":")[0];
58-
LOGGER.info("sort: " + sort);
58+
//LOGGER.info("sort: " + sort);
5959
}
6060
model.addAttribute("page",page);
6161
searchItem.setBeginIndex(begin);
@@ -83,7 +83,7 @@ public String search(@Valid SessionBean searchItem, BindingResult result,
8383
String sort = "";
8484
if(mySort != null) {
8585
sort = page.getSort().toString().split(":")[0];
86-
LOGGER.info("sort: " + sort);
86+
//LOGGER.info("sort: " + sort);
8787
}
8888
model.addAttribute("page",page);
8989
searchItem.setBeginIndex(begin);

0 commit comments

Comments
 (0)