Remove debug output

This commit is contained in:
MrLetsplay 2024-01-17 21:25:36 +01:00
parent 4484b87c32
commit 2387e6126a
Signed by: mr
SSH Key Fingerprint: SHA256:92jBH80vpXyaZHjaIl47pjRq+Yt7XGTArqQg1V7hSqg

View File

@ -70,7 +70,6 @@ public class MdBlog {
return; return;
} }
System.out.println(path);
createPostsIndex(path); createPostsIndex(path);
return; return;
} }
@ -177,7 +176,6 @@ public class MdBlog {
.map(p -> { .map(p -> {
String postMd = indexPostTemplate; String postMd = indexPostTemplate;
Post post = posts.get(path.concat(p)); Post post = posts.get(path.concat(p));
System.out.println(p);
HtmlElement title = new HtmlElement("a"); HtmlElement title = new HtmlElement("a");
title.setAttribute("href", p.toString()); title.setAttribute("href", p.toString());