diff --git a/src/chocolatey.resources/helpers/functions/Get-WebFile.ps1 b/src/chocolatey.resources/helpers/functions/Get-WebFile.ps1 index 142edd6009..e3c64e025b 100644 --- a/src/chocolatey.resources/helpers/functions/Get-WebFile.ps1 +++ b/src/chocolatey.resources/helpers/functions/Get-WebFile.ps1 @@ -162,10 +162,12 @@ param( } if ($total -eq $goal) { - Write-Progress "Completed download of $url." "Completed a total of $total bytes of $fileName" -id 0 -Completed + Write-Progress "Completed download of $url." "Completed download of $fileName ($goalFormatted)." -id 0 -Completed } } } while ($count -gt 0) + Write-Host "" + Write-Host "Download of $([System.IO.Path]::GetFileName($fileName)) ($goalFormatted) completed." } catch { throw $_.Exception } finally { diff --git a/src/chocolatey/infrastructure/powershell/PoshHostUserInterface.cs b/src/chocolatey/infrastructure/powershell/PoshHostUserInterface.cs index 40d0f548bd..6e6ee21814 100644 --- a/src/chocolatey/infrastructure/powershell/PoshHostUserInterface.cs +++ b/src/chocolatey/infrastructure/powershell/PoshHostUserInterface.cs @@ -136,8 +136,8 @@ public override void WriteProgress(long sourceId, ProgressRecord record) if (record.PercentComplete == 100 && !hasLoggedFinalProgress) { hasLoggedFinalProgress = true; - this.Log().Info(""); - this.Log().Info(record.StatusDescription.Replace("Saving","Finished downloading. Saved")); + //this.Log().Info(""); + //this.Log().Info(record.StatusDescription.Replace("Saving","Finished downloading. Saved")); } }