Skip to content

Commit

Permalink
replace with log4j and fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
marevol committed Dec 31, 2024
1 parent cc578f9 commit a7a6f05
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/org/codelibs/fess/ds/git/GitDataStore.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@
import java.util.stream.Stream;

import org.apache.commons.io.output.DeferredFileOutputStream;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.codelibs.core.io.CopyUtil;
import org.codelibs.core.lang.StringUtil;
import org.codelibs.core.misc.Pair;
Expand Down Expand Up @@ -73,12 +75,10 @@
import org.eclipse.jgit.transport.FetchResult;
import org.eclipse.jgit.transport.RefSpec;
import org.eclipse.jgit.transport.UsernamePasswordCredentialsProvider;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class GitDataStore extends AbstractDataStore {

private static final Logger logger = LoggerFactory.getLogger(GitDataStore.class);
private static final Logger logger = LogManager.getLogger(GitDataStore.class);

protected static final String PASSWORD = "password";

Expand Down

0 comments on commit a7a6f05

Please sign in to comment.