scripts/Log-Normal.ps1
function Log-Normal { [CmdletBinding()] param ( [Parameter(Position = 0, Mandatory = $false, ValueFromPipeline = $true)] [object]$message, [Parameter(Position = 1, Mandatory = $true)] [hashtable]$config ) process { $message | Log-Output -Config $config -Verbosity "Normal" } } |