From dae1bf5754a3551d50a2b618b02afec995b5a1f6 Mon Sep 17 00:00:00 2001 From: Brad Lance Date: Sun, 5 Jul 2026 19:59:36 -0500 Subject: [PATCH] Show configured insurance file type in the startup banner Makes it obvious at a glance whether entity.json's insurance_file_type was actually read (e.g. 'File type: .tif') instead of silently defaulting to pdf. --- engine.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine.ps1 b/engine.ps1 index 0f1a954..83cae3c 100644 --- a/engine.ps1 +++ b/engine.ps1 @@ -88,9 +88,9 @@ if (-not (Test-Path $export1)) { } Write-Host "" -Write-Host "Entity: $entityName | Workflow: $workflow | Date: $today | Log: $logLevel" -ForegroundColor Cyan +Write-Host "Entity: $entityName | Workflow: $workflow | File type: .$insuranceExt | Date: $today | Log: $logLevel" -ForegroundColor Cyan Write-Host ("=" * 60) -Write-Info "=== START entity=$entityName workflow=$workflow ===" +Write-Info "=== START entity=$entityName workflow=$workflow filetype=$insuranceExt ===" # -- Helpers ------------------------------------------------------------------ function Merge-Config($base, $override) {