Reduce log noise during loading. Bad URLs don't need to be loaded, they can be grepped from the instructions.

This commit is contained in:
Viktor Lofgren 2023-04-30 18:36:34 +02:00
parent 0a5e85be8f
commit 1e3b6934bb

View File

@ -40,7 +40,7 @@ public class SqlLoadUrls {
int cnt = 0; int batchOffset = 0;
for (var url : urls) {
if (url.path.length() >= 255) {
logger.warn("Skipping bad URL {}", url);
logger.debug("Skipping bad URL {}", url);
continue;
}
affectedDomains.add(url.domain);