clia-local-time

A LocalTime implementation to set timezone manually.

Tracing-subscriber 3.x switched from chrono crate to time. When using with LocalTime on some platforms it will cause to failure, when auto fetching the timezone from system. So we build ourselves' LocalTime to fix it. In this patch, you can pass the timezone manually to LocalTime, it default use fixed timezone +8 for China usage.

Example

Cargo.toml:

toml [dependencies] time = { version = "0.3", features = ["macros"] } tracing-subscriber = { version = "0.3", features = ["fmt", "std", "time", "local-time"] } clia-local-time = "0.1"

main.rs:

```rust use time::macros::formatdescription; use clialocal_time::LocalTime;

fn main { let timer = LocalTime::withtimezone( formatdescription!( "[year]-[month]-[day] [hour]:[minute]:[second].[subsecond digits:3]" ), 8, 0, 0, ); tracingsubscriber::fmt() .withtimer(timer) .init(); } ```