Skip to content

Commit

Permalink
SNOW-1614292: java.lang.ClassNotFoundException: org.slf4j.LoggerFactor (
Browse files Browse the repository at this point in the history
#1862)

Fixes issue where the absence of the slf4j-api library from the classpath
results in a NoClassDefFoundError/ClassNotFoundException because
the class org.slf4j.LoggerFactory can't be found
  • Loading branch information
sfc-gh-wfateem authored Aug 9, 2024
1 parent 6108698 commit e2a092d
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,6 @@
import org.apache.commons.io.FileUtils;
import org.apache.commons.io.IOUtils;
import org.apache.commons.io.filefilter.WildcardFileFilter;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* Class for uploading/downloading files
Expand All @@ -100,7 +98,6 @@ public class SnowflakeFileTransferAgent extends SFBaseFileTransferAgent {

private static final String localFSFileSep = systemGetProperty("file.separator");
private static final int DEFAULT_PARALLEL = 10;
private static final Logger log = LoggerFactory.getLogger(SnowflakeFileTransferAgent.class);

private final String command;

Expand Down

0 comments on commit e2a092d

Please sign in to comment.