(crawler) Reduce log spam

This commit is contained in:
Viktor Lofgren 2023-07-29 19:22:58 +02:00
parent 2a6183f9e0
commit aba134284f

View File

@ -204,9 +204,7 @@ public class CrawlerMain implements AutoCloseable {
logger.info("Fetched {}", specification.domain); logger.info("Fetched {}", specification.domain);
} catch (Exception e) { } catch (Exception e) {
logger.error("Error fetching domain", e); logger.error("Error fetching domain " + specification.domain, e);
} finally {
logger.info("Done with {}", specification.domain);
} }
} }