formatters/file-noindent.psm1

function Format-FileNoIndent
{
param(
    $Record
)
    return "{0}`t{1}`t{2}" -f ((Get-Date).ToString(), $Record.Level, $Record.Message, ("`t"*$Record.Indent))
}