From 8862b50c9896f1d74fd3d1074758f9ec44ebe73c Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Thu, 12 Sep 2024 12:42:47 +0200 Subject: [PATCH] chore: Remove unnecessary SSH command execution time logging --- bootstrap/helpers/remoteProcess.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap/helpers/remoteProcess.php b/bootstrap/helpers/remoteProcess.php index 3b63a5b97..4ba378e67 100644 --- a/bootstrap/helpers/remoteProcess.php +++ b/bootstrap/helpers/remoteProcess.php @@ -321,7 +321,7 @@ function instant_remote_process(Collection|array $command, Server $server, bool $end_time = microtime(true); $execution_time = ($end_time - $start_time) * 1000; // Convert to milliseconds - ray('SSH command execution time:', $execution_time.' ms')->orange(); + // ray('SSH command execution time:', $execution_time.' ms')->orange(); $output = trim($process->output()); $exitCode = $process->exitCode();