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

Fixes: https://github.com/tokio-rs/tracing/issues/2460 I only fixed lints making #2917 fail. Seems like they affect `master` branch as well?

## Motivation Currently, a keyword like `type` fails compilation as (a path segment of) a field name, for no clear reason. Trying to use `r#type` instead leads to the `r#`...

## Motivation References to a `static mut` variable would become a hard error in rust 2024. ```rust #[inline] fn get_global() -> &'static Dispatch { if GLOBAL_INIT.load(Ordering::SeqCst) != INITIALIZED { return...

## Motivation `valuable` support has had unstable support for two years now with no major issues. The crate has close to 30 million downloads on crates.io and all its dependants...

## Motivation Multiple field parsing is broken: even if proper string is passed to the parser, commas are parsed as part of the field This partially fixes #2935 ## Solution...

## Feature Request ### Crates `tracing-subscriber` ### Motivation I'm currently using [`reload::Layer`](https://docs.rs/tracing-subscriber/latest/tracing_subscriber/reload/struct.Layer.html) with a `Filtered` layer to activate different tracing levels for various modules dynamically. However, it's not currently possible...

## Motivation In #2360, people have requested `impl Clone for EnvFilter` in order to use `EnvFilter` as a `clap` argument. In `conduwuit`, we want this in order to do something...

## Feature Request ### Crates tracing-macros ### Motivation Hey there! Are there any plans to publish [tracing_macros](https://crates.io/crates/tracing_macros) In Ratatui docs, we're [suggesting that users create a macro similar to the...

## Feature Request ### Crates `tracing-subscriber` ### Motivation As of `clap` v4, there is now a `Clone` requirement on some part of the `parse` machinery. This means that trying to...

## Motivation The matcher's crate has not been updated in 3 years. It is on Regex Automata version "0.1". Due to this I am getting a weird utf-8 error. This...