Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
uLog
0.2.2.0
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
)
)
}