formatters/file.psm1
1 2 3 4 5 6 7 |
function Format-FileDefault { param( $Record ) return "{0}`t{1}{3}{2}" -f ((Get-Date).ToString(), $Record.Level, $Record.Message, ("`t"*$Record.Indent)) } |