We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
├── tracing v0.1.41 │ ├── tracing-attributes v0.1.28 (proc-macro) │ └── tracing-core v0.1.33 └── tracing-subscriber v0.3.19 ├── tracing-core v0.1.33 (*) └── tracing-log v0.2.0 └── tracing-core v0.1.33 (*)
Darwin MacBook-Air.local 24.3.0 Darwin Kernel Version 24.3.0: Thu Jan 2 20:24:06 PST 2025; root:xnu-11215.81.4~3/RELEASE_ARM64_T8103 arm64
I tried this code:
#[tokio::main] async fn main() { println!("hello"); tracing_subscriber::fmt().without_time().init(); tracing::info!("hello"); }
I expected to see this happen:
hello INFO demo: hello
Instead, this happened:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bug Report
Version
Platform
Darwin MacBook-Air.local 24.3.0 Darwin Kernel Version 24.3.0: Thu Jan 2 20:24:06 PST 2025; root:xnu-11215.81.4~3/RELEASE_ARM64_T8103 arm64
Description
I tried this code:
I expected to see this happen:
Instead, this happened:
The text was updated successfully, but these errors were encountered: