Remove debug statement in ExecuteRemoteCommand trait

This commit is contained in:
Andras Bacsai 2024-04-16 21:30:28 +02:00
parent 7c765c47e6
commit 63758c6679

View File

@ -41,7 +41,6 @@ public function execute_remote_command(...$commands)
$command = parseLineForSudo($command, $this->server); $command = parseLineForSudo($command, $this->server);
} }
} }
ray($command);
$remote_command = generateSshCommand($this->server, $command); $remote_command = generateSshCommand($this->server, $command);
$process = Process::timeout(3600)->idleTimeout(3600)->start($remote_command, function (string $type, string $output) use ($command, $hidden, $customType, $append) { $process = Process::timeout(3600)->idleTimeout(3600)->start($remote_command, function (string $type, string $output) use ($command, $hidden, $customType, $append) {
$output = Str::of($output)->trim(); $output = Str::of($output)->trim();