(crawler) Remove accidental log spam

This commit is contained in:
Viktor Lofgren 2024-04-22 15:51:37 +02:00
parent a86b596897
commit f430a084e8

View File

@ -19,8 +19,6 @@ public record ContentTags(String etag, String lastMod) {
/** Paints the tags onto the request builder. */
public void paint(Request.Builder getBuilder) {
System.out.println(ifNoneMatch() + " " + ifModifiedSince());
if (etag != null) {
getBuilder.addHeader("If-None-Match", ifNoneMatch());
}