From: Vincent Vanwaelscappel Date: Thu, 24 Apr 2025 10:42:03 +0000 (+0200) Subject: #7454 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=c61d59d8ff5f93c7b8f90061dbe9ceb1bb04102a;p=cubist_net.git #7454 --- diff --git a/src/Transfer/FTP.php b/src/Transfer/FTP.php index ddd9354..2244d3d 100644 --- a/src/Transfer/FTP.php +++ b/src/Transfer/FTP.php @@ -42,7 +42,6 @@ class FTP extends Driver { $lftp = $this->_lftp($source, $dest, $mirror, $dryrun); $lftp->execute(); - $lftp->debug(); return $lftp; } diff --git a/src/Transfer/SFTP.php b/src/Transfer/SFTP.php index 54c1ee1..15f85d3 100644 --- a/src/Transfer/SFTP.php +++ b/src/Transfer/SFTP.php @@ -33,7 +33,6 @@ class SFTP extends Driver $rclone->setMirror($mirror); $rclone->setDryRun($dryrun); $rclone->execute(); - $rclone->debug(); return $rclone; }