From 7956969c8b69375fddb3b5773fd3c8720874755f Mon Sep 17 00:00:00 2001 From: dopeuni444 Date: Thu, 31 Jul 2025 13:03:57 +0400 Subject: [PATCH] Improves config loading feedback Adds a detailed output of configuration properties upon successful loading. This enhancement provides immediate feedback to the user, confirming that the configuration file has been loaded correctly and displaying the available properties. --- PowerShell_AI_Agent/test.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/PowerShell_AI_Agent/test.ps1 b/PowerShell_AI_Agent/test.ps1 index 1e8bb17..ae8d4cc 100644 --- a/PowerShell_AI_Agent/test.ps1 +++ b/PowerShell_AI_Agent/test.ps1 @@ -11,6 +11,7 @@ if (Test-Path $configPath) { Write-Host "✅ Configuration file exists" -ForegroundColor Green $config = Get-Content $configPath | ConvertFrom-Json Write-Host "✅ Configuration loaded successfully" -ForegroundColor Green + Write-Host " Configuration properties: $($config.PSObject.Properties.Name -join ', ')" -ForegroundColor Cyan } else { Write-Host "❌ Configuration file not found" -ForegroundColor Red }