Merge pull request #442 from Romanitho/log

Clean log header on log rotation
pull/443/head
Romain 2023-10-21 09:21:43 +02:00 committed by GitHub
commit 15e47f2fe6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 13 deletions

View File

@ -71,19 +71,8 @@ function Invoke-LogRotation ($LogFile, $MaxLogFiles, $MaxLogSize) {
}
#Log Header
$Log = "##################################################`n# CHECK FOR APP UPDATES - $(Get-Date -Format (Get-culture).DateTimeFormat.ShortDatePattern)`n##################################################"
$Log | out-file -filepath $LogFile -Append
Write-ToLog "Running in System context"
if ($ActivateGPOManagement) {
Write-ToLog "Activated WAU GPO Management detected, comparing..."
if ($null -ne $ChangedSettings -and $ChangedSettings -ne 0) {
Write-ToLog "Changed settings detected and applied" "Yellow"
}
else {
Write-ToLog "No Changed settings detected" "Yellow"
}
}
Write-ToLog "Max Log Size reached: $MaxLogSize bytes - Rotated Logs"
Write-ToLog -LogMsg "CHECK FOR APP UPDATES (System context)" -IsHeader
Write-ToLog -LogMsg "Max Log Size reached: $MaxLogSize bytes - Rotated Logs"
Return $True
}