Write-ToLog: add missing $LogMsg

pull/652/head
Christopher Bock 2024-07-28 06:32:16 +02:00
parent 1d387c08a2
commit 94713ece01
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ function Write-ToLog {
#If header requested
if ($IsHeader) {
$Log = "#"*65 + "`n#`t$(Get-Date -Format (Get-culture).DateTimeFormat.ShortDatePattern)`n" + "#"*65
$Log = "#"*65 + "`n#`t$(Get-Date -Format (Get-culture).DateTimeFormat.ShortDatePattern) - $LogMsg`n" + "#"*65
}
else {
$Log = "$(Get-Date -UFormat "%T") - $LogMsg"