浏览代码

Removed debug message print from sftp

Toby Chui 2 年之前
父节点
当前提交
bb4b519dcc
共有 1 个文件被更改,包括 0 次插入1 次删除
  1. 0 1
      mod/filesystem/abstractions/sftpfs/sftpfs.go

+ 0 - 1
mod/filesystem/abstractions/sftpfs/sftpfs.go

@@ -237,7 +237,6 @@ func (s SFTPFileSystemAbstraction) RealPathToVirtualPath(fullpath string, userna
 
 func (s SFTPFileSystemAbstraction) FileExists(realpath string) bool {
 	_, err := s.Stat(realpath)
-	fmt.Println(realpath, err)
 	return err == nil
 }