removing debug logs

This commit is contained in:
Mohit Raju 2015-05-18 10:10:07 +03:00
parent 242486c0b1
commit 13bcde318b

View File

@ -12,14 +12,10 @@ package org.cryptomator.ui.util.mount;
import java.net.URI;
import org.apache.commons.lang3.SystemUtils;
import org.cryptomator.ui.util.command.CommandResult;
import org.cryptomator.ui.util.command.Script;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
final class LinuxGvfsWebDavMounter implements WebDavMounterStrategy {
public static final Logger LOG = LoggerFactory.getLogger(LinuxGvfsWebDavMounter.class);
@Override
public boolean shouldWork() {
if (SystemUtils.IS_OS_LINUX) {
@ -58,7 +54,6 @@ final class LinuxGvfsWebDavMounter implements WebDavMounterStrategy {
try{
openFMWithWebdavSchema("dav", uri).execute();
}catch(CommandFailedException exception){
LOG.debug("Openinig webdav with dav schema name failed, trying webdav schema name");
openFMWithWebdavSchema("webdav", uri).execute();
}
return new AbstractWebDavMount() {