Private/WriteLog.ps1
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSUseDeclaredVarsMoreThanAssignments', '')] $WriteLog = { param ( [string]$Message ) # TODO: check environment variable $path = "$($PSScriptRoot)\..\magictooltips.log" $FormattedDate = Get-Date -Format "yyyy-MM-dd HH:mm:ss" "$FormattedDate $Message" | Out-File -FilePath $Path -Append } |