From 610ff62828ab99c3c908a27f6ee27bf2e6b256bc Mon Sep 17 00:00:00 2001 From: Alasdair Gray Date: Fri, 19 Nov 2021 11:55:20 +0000 Subject: [PATCH] Log message now gives path and filename in one go This means that the log message can be directly copied and used to look up the file --- core/src/main/java/hwu/elixir/scrape/scraper/ScraperCore.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/hwu/elixir/scrape/scraper/ScraperCore.java b/core/src/main/java/hwu/elixir/scrape/scraper/ScraperCore.java index 5d8a7ca..dcfe1e3 100644 --- a/core/src/main/java/hwu/elixir/scrape/scraper/ScraperCore.java +++ b/core/src/main/java/hwu/elixir/scrape/scraper/ScraperCore.java @@ -237,7 +237,7 @@ protected String fixAny23WeirdIssues(String html) { */ protected void displayResult(String url, boolean result, String outputFolder, long CC) { if (result) { - logger.info(url + " was successfully scraped and written to " + outputFolder + " with filename " + CC + ".nq"); + logger.info(url + " was successfully scraped and written to " + outputFolder + CC + ".nq"); } else { logger.error(url + " was NOT successfully scraped."); }