diff --git a/app/Console/Commands/ProcessSftpFiles.php b/app/Console/Commands/ProcessSftpFiles.php index 6834922..1075e6c 100644 --- a/app/Console/Commands/ProcessSftpFiles.php +++ b/app/Console/Commands/ProcessSftpFiles.php @@ -29,6 +29,13 @@ class ProcessSftpFiles extends Command public function handle() { + + Log::info('FTP disk config check', [ + 'root' => config('filesystems.disks.ftp.root'), + 'host' => config('filesystems.disks.ftp.host'), + 'username' => config('filesystems.disks.ftp.username'), + 'port' => config('filesystems.disks.ftp.port'), + ]); try{ $files = Storage::disk('ftp')->allFiles();