Fix log timestamps not using local timezone (#16400)

Get time offset by time crate will fail if there are mutli threads. So
call `config_builder.set_time_offset_to_local()` is useless.

Closes #16397

after:
<img width="664" alt="image"
src="https://github.com/user-attachments/assets/2b15fa06-c411-44f9-9ea1-871d25eb577f">

Release Notes:

- Fixed Local Timezone not showing Zed.log
This commit is contained in:
bestgopher 2024-08-23 02:56:49 +08:00 committed by GitHub
parent 20f85b946d
commit e17a5c1412
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 8 additions and 1 deletions

1
Cargo.lock generated
View File

@ -13913,6 +13913,7 @@ dependencies = [
"terminal_view",
"theme",
"theme_selector",
"time",
"tree-sitter-md",
"tree-sitter-rust",
"ui",

View File

@ -97,6 +97,7 @@ tab_switcher.workspace = true
supermaven.workspace = true
task.workspace = true
tasks_ui.workspace = true
time.workspace = true
telemetry_events.workspace = true
terminal_view.workspace = true
theme.workspace = true

View File

@ -8,6 +8,7 @@ mod zed;
use anyhow::{anyhow, Context as _, Result};
use assistant::PromptBuilder;
use chrono::Offset;
use clap::{command, Parser};
use cli::FORCE_CLI_MODE_ENV_VAR_NAME;
use client::{parse_zed_link, Client, DevServerToken, UserStore};
@ -44,6 +45,7 @@ use std::{
sync::Arc,
};
use theme::{ActiveTheme, SystemAppearance, ThemeRegistry, ThemeSettings};
use time::UtcOffset;
use util::{maybe, parse_env_output, ResultExt, TryFutureExt};
use uuid::Uuid;
use welcome::{show_welcome_view, BaseKeymap, FIRST_OPEN};
@ -886,7 +888,10 @@ fn init_logger() {
let mut config_builder = ConfigBuilder::new();
config_builder.set_time_format_rfc3339();
config_builder.set_time_offset_to_local().log_err();
let local_offset = chrono::Local::now().offset().fix().local_minus_utc();
if let Ok(offset) = UtcOffset::from_whole_seconds(local_offset) {
config_builder.set_time_offset(offset);
}
#[cfg(target_os = "linux")]
{