diff --git a/run_python_with_restart.ps1 b/run_python_with_restart.ps1 index 4ce8653..a5a3825 100644 --- a/run_python_with_restart.ps1 +++ b/run_python_with_restart.ps1 @@ -8,6 +8,7 @@ param( function Run-PythonScript { param($ScriptPath) $process = Start-Process -FilePath "python" -ArgumentList $ScriptPath -PassThru -Wait -NoNewWindow + Write-Host "Process details: $($process | Format-List | Out-String)" # Added line return $process.ExitCode }