From: Patrick Canterino Date: Fri, 14 Jan 2022 19:37:08 +0000 (+0100) Subject: Rotate logfiles X-Git-Tag: 0.2~1 X-Git-Url: https://git.p6c8.net/psmysqlbackup.git/commitdiff_plain/8b6c416063774aa0d763cfb0809d63ad5aa48511 Rotate logfiles --- diff --git a/psmysqlbackup.ps1 b/psmysqlbackup.ps1 index bbfc075..ce17ca3 100644 --- a/psmysqlbackup.ps1 +++ b/psmysqlbackup.ps1 @@ -30,6 +30,7 @@ $configRotate = 7 # Directory where to store the logfiles $configLogDir = "log" # Number of logfiles to keep, set to 0 to keep all logfiles +# You should set this to at least the same as $configRotate $configLogRotate = 7 # Databases to backup, leave empty to backup all databases @@ -304,5 +305,7 @@ foreach($d in $databasesToBackup) { } } +Invoke-FileRotation -Dir $configLogDir -MaxFiles $configLogRotate -Pattern "^log-\d{8,}-\d{6}\.log$" -LogFile $logFile + $endTime = Get-Date -format "yyyy-MM-dd HH:mm:ss" Write-Log "Ended at $endTime" -Path $logFile \ No newline at end of file