Browse Source

Removed debug message print from sftp

Toby Chui 2 năm trước cách đây
mục cha
commit
bb4b519dcc
1 tập tin đã thay đổi với 0 bổ sung1 xóa
  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
 }