Skip to content

Commit

Permalink
Update logger dependencies
Browse files Browse the repository at this point in the history
Related to #1813
  • Loading branch information
TobiasNx committed Oct 12, 2023
1 parent 2a661a1 commit 1d18dc6
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@
import org.apache.http.entity.FileEntity;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClientBuilder;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import org.elasticsearch.client.Client;
import org.elasticsearch.common.network.NetworkModule;
import org.elasticsearch.common.settings.Settings;
Expand All @@ -36,14 +38,14 @@
* Test of filtering resources with hbz holdings from culturegraph marcxml,
* tranforming into JSON, writing as an elasticsearch bulk json file, ingesting
* it and retrieving it via HTTP.
*
*
* @author Pascal Christoph(dr0i)
**/
@SuppressWarnings("javadoc")
public final class CulturegraphXmlFilterHbzToJsonTest {

private static final Logger LOG =
LogManager.getLogger(CulturegraphXmlFilterHbzToJsonTest.class);
LoggerFactory.getLogger(CulturegraphXmlFilterHbzToJsonTest.class);

private static final String PATH_TO_TEST = "src/test/resources/";
public static final String JSON_OUTPUT_FILE =
Expand Down

0 comments on commit 1d18dc6

Please sign in to comment.