Helpers/Write-LogFile.ps1
Function Write-LogFile { [CmdletBinding()] param( [Parameter()] [ValidateNotNullOrEmpty()] [string]$Message, [Parameter()] [ValidateNotNullOrEmpty()] [string]$LogFilePath, [Parameter()] [ValidateNotNullOrEmpty()] [ValidateSet('Information','Warning','Error')] [string]$Severity = 'Information' ) $CaptainsLog = "$(Get-Date -UFormat "%Y.%m.%d_%R") - $($Severity): $Message" IF (!(Test-Path $LogFilePath)) {New-Item -ItemType File -Path $LogFilePath -Force} DO{ Try { Add-Content -Path $LogFilePath -Value $CaptainsLog $Done = $True } Catch { $Done = $False } Finally { Start-Sleep -S 1 } } While ($Done -ne $True) } |