ParsableLogFormatter
open class ParsableLogFormatter: StandardLogFormatter
A LogFormatter
configured to be ideal for writing machine-parsable log files.
By default, this formatter:
- Uses
.unix
as the defaultTimestampStyle
- Uses
.numeric
as the defaultSeverityStyle
- Uses
.tab
as the defaultDelimiterStyle
- Outputs the call site and calling thread
These defaults can be overridden during instantiation.
-
Initializes a new
ParsableLogFormatter
instance.Declaration
Swift
public override init(timestampStyle: TimestampStyle? = .unix, severityStyle: SeverityStyle? = .numeric, delimiterStyle: DelimiterStyle? = .tab, showCallSite: Bool = true, showCallingThread: Bool = true)
Parameters
timestampStyle
Governs the formatting of the timestamp in the log output. Pass
nil
to suppress output of the timestamp.severityStyle
Governs the formatting of the
LogSeverity
in the log output. Passnil
to suppress output of the severity.delimiterStyle
If provided, overrides the default field separator delimiters. Pass
nil
to use the default delimiters.showCallSite
If
true
, the source file and line indicating the call site of the log request will be added to formatted log messages.showCallingThread
If
true
, a hexadecimal string containing an opaque identifier for the calling thread will be added to formatted log messages.