Skip to content

Commit

Permalink
wrap date format
Browse files Browse the repository at this point in the history
  • Loading branch information
IceSentry committed Jul 17, 2022
1 parent 57b2e11 commit d7348ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/bevy_log/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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: "[year]-[month]-[day]-[hour]-[minute]"
Minutely,
/// Creates a new file every hour and appends the date to the file name
/// Date format: [year]-[month]-[day]-[hour]
/// Date format: "[year]-[month]-[day]-[hour]"
Hourly,
/// Creates a new file every day and appends the date to the file name
/// Date format: [year]-[month]-[day]
/// Date format: "[year]-[month]-[day]"
Daily,
/// Never creates a new file
Never,
Expand Down

0 comments on commit d7348ec

Please sign in to comment.