Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion tracing-subscriber/src/fmt/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@
//! [`tracing`] is a framework for instrumenting Rust programs with context-aware,
//! structured, event-based diagnostic information. This crate provides an
//! implementation of the [`Collect`] trait that records `tracing`'s `Event`s
//! and `Span`s by formatting them as text and logging them to stdout.
//! and `Span`s by formatting them as text and logging them to **stdout**.
//!
//! _Note: It is not good practice to write logging information to stdout.
//! It is recommended for most applications to set this to stderr instead, which
//! can be done with [`CollectorBuilder::with_writer`]_
//!
//! # Usage
//!
Expand Down