Skip to content

Commit

Permalink
use different date format
Browse files Browse the repository at this point in the history
  • Loading branch information
IceSentry committed Jul 17, 2022
1 parent d7348ec commit 224e129
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: 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,
Expand Down

0 comments on commit 224e129

Please sign in to comment.