I just started using the sardine and it seems to be working fine. I'm
simply retrieving a Webdav file and parsing the data. I followed the
example on the sardine web page on how to do this. However, when my
program retrieves the file, the following is printed to the console:
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See
http://www.slf4j.org/codes.html#StaticLoggerBinder for
further details.
I do have slf4j-api-1.6.2.jar in my classpath. And I put the following
import statements in my class:
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
although, Netbeans tells me that they unused imports. My program seems
to work fine though. It's very simple, I don't need any logging. Does
anyone know how to make these messages go away? Sorry if this is a
stupid question, I'm still pretty new to Java.