Struct tracing_subscriber::fmt::format::Format
source · pub struct Format<F = Full, T = SystemTime> { /* private fields */ }
Expand description
Implementations§
source§impl<T> Format<Pretty, T>
impl<T> Format<Pretty, T>
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 defaults to true
.
source§impl<F, T> Format<F, T>
impl<F, T> Format<F, T>
sourcepub fn pretty(self) -> Format<Pretty, T>
pub fn pretty(self) -> Format<Pretty, T>
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>
pub fn json(self) -> Format<Json, T>
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 chrono
feature flag enables the
additional time formatters ChronoUtc
and ChronoLocal
.
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
source§impl<T> Format<Json, T>
impl<T> Format<Json, T>
sourcepub fn flatten_event(self, flatten_event: bool) -> Format<Json, T>
pub fn flatten_event(self, flatten_event: bool) -> Format<Json, T>
Use the full JSON format with the event’s event fields flattened.
Example Output
{"timestamp":"Feb 20 11:28:15.096","level":"INFO","target":"mycrate", "message":"some message", "key": "value"}
See Json
.
sourcepub fn with_current_span(self, display_current_span: bool) -> Format<Json, T>
pub fn with_current_span(self, display_current_span: bool) -> Format<Json, T>
Sets whether or not the formatter will include the current span in formatted events.
See format::Json
sourcepub fn with_span_list(self, display_span_list: bool) -> Format<Json, T>
pub fn with_span_list(self, display_span_list: bool) -> Format<Json, T>
Sets whether or not the formatter will include a list (from root to leaf) of all currently entered spans in formatted events.
See format::Json
Trait Implementations§
source§impl<C, N, T> FormatEvent<C, N> for Format<Pretty, T>where
C: Subscriber + for<'a> LookupSpan<'a>,
N: for<'a> FormatFields<'a> + 'static,
T: FormatTime,
impl<C, N, T> FormatEvent<C, N> for Format<Pretty, T>where
C: Subscriber + for<'a> LookupSpan<'a>,
N: for<'a> FormatFields<'a> + 'static,
T: FormatTime,
source§fn format_event(
&self,
ctx: &FmtContext<'_, C, N>,
writer: &mut dyn Write,
event: &Event<'_>
) -> Result
fn format_event(
&self,
ctx: &FmtContext<'_, C, N>,
writer: &mut dyn Write,
event: &Event<'_>
) -> Result
Event
in Context
to the given Write
.source§impl<S, N, T> FormatEvent<S, N> for Format<Compact, T>where
S: Subscriber + for<'a> LookupSpan<'a>,
N: for<'a> FormatFields<'a> + 'static,
T: FormatTime,
impl<S, N, T> FormatEvent<S, N> for Format<Compact, T>where
S: Subscriber + for<'a> LookupSpan<'a>,
N: for<'a> FormatFields<'a> + 'static,
T: FormatTime,
source§fn format_event(
&self,
ctx: &FmtContext<'_, S, N>,
writer: &mut dyn Write,
event: &Event<'_>
) -> Result
fn format_event(
&self,
ctx: &FmtContext<'_, S, N>,
writer: &mut dyn Write,
event: &Event<'_>
) -> Result
Event
in Context
to the given Write
.source§impl<S, N, T> FormatEvent<S, N> for Format<Full, T>where
S: Subscriber + for<'a> LookupSpan<'a>,
N: for<'a> FormatFields<'a> + 'static,
T: FormatTime,
impl<S, N, T> FormatEvent<S, N> for Format<Full, T>where
S: Subscriber + for<'a> LookupSpan<'a>,
N: for<'a> FormatFields<'a> + 'static,
T: FormatTime,
source§fn format_event(
&self,
ctx: &FmtContext<'_, S, N>,
writer: &mut dyn Write,
event: &Event<'_>
) -> Result
fn format_event(
&self,
ctx: &FmtContext<'_, S, N>,
writer: &mut dyn Write,
event: &Event<'_>
) -> Result
Event
in Context
to the given Write
.source§impl<S, N, T> FormatEvent<S, N> for Format<Json, T>where
S: Subscriber + for<'lookup> LookupSpan<'lookup>,
N: for<'writer> FormatFields<'writer> + 'static,
T: FormatTime,
impl<S, N, T> FormatEvent<S, N> for Format<Json, T>where
S: Subscriber + for<'lookup> LookupSpan<'lookup>,
N: for<'writer> FormatFields<'writer> + 'static,
T: FormatTime,
source§fn format_event(
&self,
ctx: &FmtContext<'_, S, N>,
writer: &mut dyn Write,
event: &Event<'_>
) -> Resultwhere
S: Subscriber + for<'a> LookupSpan<'a>,
fn format_event(
&self,
ctx: &FmtContext<'_, S, N>,
writer: &mut dyn Write,
event: &Event<'_>
) -> Resultwhere
S: Subscriber + for<'a> LookupSpan<'a>,
Event
in Context
to the given Write
.