Skip to content

Instantly share code, notes, and snippets.

@milesgratz
Created April 11, 2017 18:36
Show Gist options
  • Save milesgratz/7fa7b2f14553c6aa97f2181c779e392b to your computer and use it in GitHub Desktop.
Save milesgratz/7fa7b2f14553c6aa97f2181c779e392b to your computer and use it in GitHub Desktop.
Write-Log
Function Write-Log {
param(
$Message,
$logPath,
$Color = "Yellow"
)
Write-Host "$Message" -ForegroundColor $Color
If ($logPath -ne $null)
{
$logTime = Get-Date -format "yyyy-MMM-d H:mm:ss zzz"
Write-Output "[$logTime] $Message" | Out-File -Append $logPath
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment