(crawler) Reduce logging

This commit is contained in:
Viktor Lofgren 2023-12-25 01:10:03 +01:00
parent d72e871265
commit 67ef2b45fa

View File

@ -130,7 +130,7 @@ public class HttpFetcherImpl implements HttpFetcher {
return probeDomain(new EdgeUrl("https", url.domain, url.port, url.path, url.param)); return probeDomain(new EdgeUrl("https", url.domain, url.port, url.path, url.param));
} }
logger.info("Error during fetching", ex); logger.info("Error during fetching {}", ex.getMessage());
return new FetchResult(FetchResultState.ERROR, url); return new FetchResult(FetchResultState.ERROR, url);
} }
} }