functions/Write-Log.ps1
Function Write-Log { [CmdletBinding()] Param( [Parameter(Position=0,Mandatory=$True)] [string] $Message, [Parameter(Position=1,Mandatory=$False)] [string] $logfile, [Parameter(Mandatory=$False)] [ValidateSet("INFO","WARN","ERROR","FATAL","DEBUG")] [String] $Level = "INFO" ) $Stamp = (Get-Date).toString("yyyy/MM/dd HH:mm:ss") $Line = "$Stamp $Level $Message" If($logfile) { Add-Content $logfile -Value $Line } Else { Write-Output $Line } } |