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.
This commit is contained in:
2026-07-05 19:59:36 -05:00
parent c61cb60c3f
commit dae1bf5754
+2 -2
View File
@@ -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) {