diff --git a/public/Get-DbaDbBackupHistory.ps1 b/public/Get-DbaDbBackupHistory.ps1 index 779f469b53..494e23953b 100644 --- a/public/Get-DbaDbBackupHistory.ps1 +++ b/public/Get-DbaDbBackupHistory.ps1 @@ -335,7 +335,7 @@ function Get-DbaDbBackupHistory { $allBackups = @() $allBackups += $fullDb = Get-DbaDbBackupHistory -SqlInstance $server -Database $db.Name -LastFull -raw:$Raw -DeviceType $DeviceType -IncludeCopyOnly:$IncludeCopyOnly -Since:$since -RecoveryFork $RecoveryFork if ($null -eq $fullDb) { - Write-Message -Level Verbose -Message "No Backup found for database $($db.Name), skipping" + Write-Message -Level Verbose -Message "No Full Backup found for database $($db.Name), skipping" continue } if (-not $IgnoreDiffBackup) { @@ -740,4 +740,4 @@ function Get-DbaDbBackupHistory { } } } -} \ No newline at end of file +}