Change `t to spaces for CMTrace

pull/724/head
Romain 2024-09-30 22:53:38 +02:00
parent 1163799291
commit b568bb11e7
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) - $LogMsg`n" + "#" * 65
$Log = "#" * 65 + "`n# $(Get-Date -Format (Get-culture).DateTimeFormat.ShortDatePattern) - $LogMsg`n" + "#" * 65
}
else {
$Log = "$(Get-Date -UFormat "%T") - $LogMsg"