Fixed local timezone setting in logger.

This commit is contained in:
Revertron
2022-05-12 19:26:23 +02:00
parent 27ba7c5710
commit 50d83b848a
3 changed files with 10 additions and 8 deletions
Generated
+1 -1
View File
@@ -84,7 +84,7 @@ dependencies = [
[[package]]
name = "alfis"
version = "0.7.2"
version = "0.7.3"
dependencies = [
"base64",
"bincode",
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "alfis"
version = "0.7.2"
version = "0.7.3"
authors = ["Revertron <alfis@revertron.com>"]
edition = "2021"
build = "build.rs"
+8 -6
View File
@@ -252,8 +252,8 @@ fn setup_logger(opt_matches: &Matches, console_attached: bool) {
if opt_matches.opt_present("t") || env::var(ALFIS_TRACE).is_ok() {
level = LevelFilter::Trace;
}
let config = ConfigBuilder::new()
.add_filter_ignore_str("mio::poll")
let mut builder = ConfigBuilder::new();
builder.add_filter_ignore_str("mio::poll")
.add_filter_ignore_str("rustls::client")
.add_filter_ignore_str("ureq::")
.set_thread_level(LevelFilter::Error)
@@ -261,10 +261,12 @@ fn setup_logger(opt_matches: &Matches, console_attached: bool) {
.set_target_level(LevelFilter::Error)
.set_level_padding(LevelPadding::Right)
.set_time_level(LevelFilter::Error)
.set_time_format_custom(format_description!("[hour]:[minute]:[second].[subsecond digits:3]"))
.set_time_offset_to_local()
.unwrap()
.build();
.set_time_format_custom(format_description!("[hour]:[minute]:[second].[subsecond digits:3]"));
let config = match builder.set_time_offset_to_local() {
Ok(config) => config,
Err(config) => config
};
let config = config.build();
match opt_matches.opt_str("l") {
None => {
if console_attached {