Skip to content

Commit

Permalink
change to debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
yashTEF committed Jun 1, 2024
1 parent 2440d6a commit 7a58a51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/src/main/java/org/eclipse/starter/ui/FetchHtmlUtility.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public String getHeaderHtml() throws IOException {
Elements headerFragment = document.select("body");
StringBuilder headerHtml = new StringBuilder();
headerHtml.append(headerFragment.html());
logger.info("element: {}", headerHtml);
logger.debug("element: {}", headerHtml);
return headerHtml.toString();
}

Expand All @@ -42,7 +42,7 @@ public String getFooterHtml() throws IOException {
Elements footerFragment = document.select("body");
StringBuilder footerHtml = new StringBuilder();
footerHtml.append(footerFragment.html());
logger.info("element: {}", footerFragment.html());
logger.debug("element: {}", footerFragment.html());
return footerHtml.toString();
}

Expand Down

0 comments on commit 7a58a51

Please sign in to comment.