Skip to content
Merged
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
4 changes: 2 additions & 2 deletions crates/bevy_log/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ pub struct LogPlugin {
/// Access to [`App`] is also provided to allow for communication between the
/// [`Subscriber`](tracing::Subscriber) and the [`App`].
///
/// Please see the `examples/log_layers.rs` for a complete example.
/// Please see the `examples/app/log_layers.rs` for a complete example.
pub custom_layer: fn(app: &mut App) -> Option<BoxedLayer>,

/// Override the default [`tracing_subscriber::fmt::Layer`] with a custom one.
Expand All @@ -253,7 +253,7 @@ pub struct LogPlugin {
/// For example, you can use [`tracing_subscriber::fmt::Layer::without_time`] to remove the
/// timestamp from the log output.
///
/// Please see the `examples/log_layers.rs` for a complete example.
/// Please see the `examples/app/log_layers.rs` for a complete example.
pub fmt_layer: fn(app: &mut App) -> Option<BoxedFmtLayer>,
}

Expand Down