tracing icon indicating copy to clipboard operation
tracing copied to clipboard

Application level tracing for Rust.

Results 338 tracing issues
Sort by recently updated
recently updated
newest added

`EnvFilter::try_new` documentation is clearly missleading. However, the documentation is aligned with `EnvFilter::new` behavior (and documentation). So I assume the fix must be to align `EnvFilter::try_new` code with its documentation, and...

## Feature Request I would like to make `tracing-subscriber/src/filter/env/builder.rs::env_var_name` a public method. ### Crates tracing-subscriber ### Motivation I would like to use the builder and check if there is an...

When using the linux-musl target for rust, the file creation time cannot be retrieved, as the current version does not support it yet ( This will be fixed with [^0])....

## Bug Report ### Version ``` tracing-playground v0.1.0 (/Users/sebastiaan/x/tracing-playground) ├── tracing v0.1.37 │ ├── tracing-attributes v0.1.23 (proc-macro) │ └── tracing-core v0.1.30 ├── tracing-opentelemetry v0.18.0 │ ├── tracing v0.1.37 (*) │...

## Bug Report ### Version ``` tracing v0.1.40 tracing-attributes v0.1.27 (proc-macro) tracing-core v0.1.32 tracing-subscriber v0.3.18 tracing-error v0.2.0 (*) ``` ### Platform Ubuntu 22.04.3 LTS ### Description I'm running an application...

https://github.com/tokio-rs/tracing/blob/3258a2bb2ae5f1b3be755bffbaef7ff851ec3b4f/tracing-core/src/field.rs#L752 I'd prefer to unhide this from the documentation, but if it must be hidden there should at least be an explanation as to why this is hidden.

Bumped the time crate to latest, they fixed some rust-nightly lint errors (https://github.com/time-rs/time/issues/681). Fixes: #2977 Note: this will also have to be backported to v0.1.x.

## Feature Request ### Crates https://docs.rs/tracing-attributes/0.1.27/src/tracing_attributes/lib.rs.html#563-566 ### Motivation I'm using a custom macro that creates some functions and optionally also instrument theses functions with the `instrument` macro. ### Proposal It...

When compiled with `--target=x86_64-unknown-linux-musl`, log rotation doesn't work. That is caused by: 1. The file creation time cannot be retrieved when compiled with musl. https://users.rust-lang.org/t/musl-and-file-creation-time/111559 2. When the creation time...

This comment describes a behavior that's not true. Unless you configure an `EnvFilter`, the global collector will not respect `RUST_LOG`. I've opted to remove the comment since the surrounding context...