idk why this isn't in master yet #94

Merged
cscherrNT merged 79 commits from devel into master 2024-07-22 13:30:20 +02:00
1 changed files with 9 additions and 0 deletions
Showing only changes of commit 7db1833cbb - Show all commits

View File

@ -267,6 +267,15 @@ impl LoggerBuilder {
self
}
/// when making a log, display the time of the message
///
/// Default: true
#[must_use]
pub const fn display_time(mut self, show_time: bool) -> Self {
self.show_time = show_time;
self
}
/// when making a log, display the log level of the message
///
/// Default: true