diff --git a/crates/bevy_log/src/lib.rs b/crates/bevy_log/src/lib.rs index daa18fe8f6745a..009ffc73636cda 100644 --- a/crates/bevy_log/src/lib.rs +++ b/crates/bevy_log/src/lib.rs @@ -95,13 +95,13 @@ pub struct LogPlugin; #[derive(Debug, Clone)] pub enum Rolling { /// Creates a new file every minute and appends the date to the file name - /// Date format: "[year]-[month]-[day]-[hour]-[minute]" + /// Date format: YYYY-MM-DD-HH-mm Minutely, /// Creates a new file every hour and appends the date to the file name - /// Date format: "[year]-[month]-[day]-[hour]" + /// Date format: YYYY-MM-DD-HH Hourly, /// Creates a new file every day and appends the date to the file name - /// Date format: "[year]-[month]-[day]" + /// Date format: YYYY-MM-DD Daily, /// Never creates a new file Never,