pub struct Format<F = Full, T = SystemTime> { /* private fields */ }
fmt
and std
only.Expand description
A pre-configured event formatter.
You will usually want to use this as the FormatEvent
for a FmtSubscriber
.
The default logging format, Full
includes all fields in each event and its containing
spans. The Compact
logging format is intended to produce shorter log
lines; it displays each event’s fields, along with fields from the current
span context, but other information is abbreviated. The Pretty
logging
format is an extra-verbose, multi-line human-readable logging format
intended for use in development.
Implementations§
Source§impl<F, T> Format<F, T>
impl<F, T> Format<F, T>
Sourcepub fn pretty(self) -> Format<Pretty, T>
Available on crate feature ansi
only.
pub fn pretty(self) -> Format<Pretty, T>
ansi
only.Use an excessively pretty, human-readable output format.
See Pretty
.
Note that this requires the “ansi” feature to be enabled.
§Options
Format::with_ansi
can be used to disable ANSI terminal escape codes (which enable
formatting such as colors, bold, italic, etc) in event formatting. However, a field
formatter must be manually provided to avoid ANSI in the formatting of parent spans, like
so:
tracing_subscriber::fmt()
.pretty()
.with_ansi(false)
.fmt_fields(format::PrettyFields::new().with_ansi(false))
// ... other settings ...
.init();
Sourcepub fn json(self) -> Format<Json, T>
Available on crate feature json
only.
pub fn json(self) -> Format<Json, T>
json
only.Use the full JSON format.
The full format includes fields from all entered spans.
§Example Output
{"timestamp":"Feb 20 11:28:15.096","level":"INFO","target":"mycrate","fields":{"message":"some message", "key": "value"}}
§Options
Format::flatten_event
can be used to enable flattening event fields into the root object.
Sourcepub fn with_timer<T2>(self, timer: T2) -> Format<F, T2>
pub fn with_timer<T2>(self, timer: T2) -> Format<F, T2>
Use the given timer
for log message timestamps.
See time
module for the provided timer implementations.
Note that using the "time"
feature flag enables the
additional time formatters UtcTime
and LocalTime
, which use the
time
crate to provide more sophisticated timestamp formatting
options.
Sourcepub fn without_time(self) -> Format<F, ()>
pub fn without_time(self) -> Format<F, ()>
Do not emit timestamps with log messages.
Sourcepub fn with_ansi(self, ansi: bool) -> Format<F, T>
pub fn with_ansi(self, ansi: bool) -> Format<F, T>
Enable ANSI terminal colors for formatted output.
Sourcepub fn with_target(self, display_target: bool) -> Format<F, T>
pub fn with_target(self, display_target: bool) -> Format<F, T>
Sets whether or not an event’s target is displayed.
Sourcepub fn with_level(self, display_level: bool) -> Format<F, T>
pub fn with_level(self, display_level: bool) -> Format<F, T>
Sets whether or not an event’s level is displayed.
Sourcepub fn with_thread_ids(self, display_thread_id: bool) -> Format<F, T>
pub fn with_thread_ids(self, display_thread_id: bool) -> Format<F, T>
Sets whether or not the thread ID of the current thread is displayed when formatting events.
Sourcepub fn with_thread_names(self, display_thread_name: bool) -> Format<F, T>
pub fn with_thread_names(self, display_thread_name: bool) -> Format<F, T>
Sets whether or not the name of the current thread is displayed when formatting events.
Sourcepub fn with_file(self, display_filename: bool) -> Format<F, T>
pub fn with_file(self, display_filename: bool) -> Format<F, T>
Sets whether or not an event’s source code file path is displayed.
Sourcepub fn with_line_number(self, display_line_number: bool) -> Format<F, T>
pub fn with_line_number(self, display_line_number: bool) -> Format<F, T>
Sets whether or not an event’s source code line number is displayed.
Sourcepub fn with_source_location(self, display_location: bool) -> Self
pub fn with_source_location(self, display_location: bool) -> Self
Sets whether or not the source code location from which an event originated is displayed.
This is equivalent to calling Format::with_file
and
Format::with_line_number
with the same value.
Source§impl<T> Format<Json, T>
impl<T> Format<Json, T>
Sourcepub fn flatten_event(self, flatten_event: bool) -> Format<Json, T>
Available on crate feature json
only.
pub fn flatten_event(self, flatten_event: bool) -> Format<Json, T>
json
only.