You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Linux 6.2.0-39-generic #40~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Thu Nov 16 10:53:04 UTC 2 x86_64 x86_64 x86_64 GNU/Linux
Crates
tracing-subscriber
Description
The tracing-subscriber 0.3.18 docs claim that SubscriberBuilder::with_ansi() can be used even when the ansi feature is disabled. And indeed this is true on master. But in the released 0.3.18 code this is not true: commit 049ad73 did not remove the #[cfg(feature = "ansi")] from the method.
The text was updated successfully, but these errors were encountered:
eric-seppanen
changed the title
SubscriberBuilder::with_ansi is incorrectly gated by the ansi feature in 0.3.18SubscriberBuilder::with_ansi is incorrectly gated by the ansi feature in tracing-subscriber 0.3.18
Jun 3, 2024
Bug Report
Version
Platform
Crates
tracing-subscriber
Description
The
tracing-subscriber
0.3.18 docs claim thatSubscriberBuilder::with_ansi()
can be used even when theansi
feature is disabled. And indeed this is true on master. But in the released 0.3.18 code this is not true: commit 049ad73 did not remove the#[cfg(feature = "ansi")]
from the method.The 0.3.18 version of the code is here:
tracing/tracing-subscriber/src/fmt/mod.rs
Lines 623 to 637 in 8b7a1dd
The text was updated successfully, but these errors were encountered: