From 224e129d804eeadc3f900d95c72940650dc4609d Mon Sep 17 00:00:00 2001 From: IceSentry Date: Sun, 17 Jul 2022 13:47:06 -0400 Subject: [PATCH] use different date format --- crates/bevy_log/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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,