File tree Expand file tree Collapse file tree 7 files changed +18
-9
lines changed Expand file tree Collapse file tree 7 files changed +18
-9
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ fn main() {
7878``` toml 
7979[dependencies ]
8080tracing  = " 0.1" 
81- tracing-subscriber  = " 0.2.0-alpha.5 " 
81+ tracing-subscriber  = " 0.2.0-alpha.6 " 
8282``` 
8383
8484This subscriber will be used as the default in all threads for the remainder of the duration
Original file line number Diff line number Diff line change @@ -14,10 +14,10 @@ use tracing_subscriber::{
1414/// when formatting the fields of each span in a trace. When no formatter is 
1515/// provided, the [default format] is used instead. 
1616/// 
17- /// [`Layer`]: https://docs.rs/tracing-subscriber/0.2.0-alpha.5 /tracing_subscriber/layer/trait.Layer.html 
17+ /// [`Layer`]: https://docs.rs/tracing-subscriber/0.2.0-alpha.6 /tracing_subscriber/layer/trait.Layer.html 
1818/// [`SpanTrace`]: ../struct.SpanTrace.html 
19- /// [field formatter]: https://docs.rs/tracing-subscriber/0.2.0-alpha.5 /tracing_subscriber/fmt/trait.FormatFields.html 
20- /// [default format]: https://docs.rs/tracing-subscriber/0.2.0-alpha.5 /tracing_subscriber/fmt/format/struct.DefaultFields.html 
19+ /// [field formatter]: https://docs.rs/tracing-subscriber/0.2.0-alpha.6 /tracing_subscriber/fmt/trait.FormatFields.html 
20+ /// [default format]: https://docs.rs/tracing-subscriber/0.2.0-alpha.6 /tracing_subscriber/fmt/format/struct.DefaultFields.html 
2121pub  struct  ErrorLayer < S ,  F  = DefaultFields >  { 
2222    format :  F , 
2323
6969{ 
7070    /// Returns a new `ErrorLayer` with the provided [field formatter]. 
7171     /// 
72-      /// [field formatter]: https://docs.rs/tracing-subscriber/0.2.0-alpha.5 /tracing_subscriber/fmt/trait.FormatFields.html 
72+      /// [field formatter]: https://docs.rs/tracing-subscriber/0.2.0-alpha.6 /tracing_subscriber/fmt/trait.FormatFields.html 
7373     pub  fn  new ( format :  F )  -> Self  { 
7474        Self  { 
7575            format, 
Original file line number Diff line number Diff line change 1+ # 0.2.0-alpha.6 (February 3, 2020)  
2+ 
3+ ### Fixed  
4+ 
5+ -  ** fmt** : Fixed empty ` {} `  printed after spans with no fields (f079f2d)
6+ -  ** fmt** : Fixed inconsistent formatting when ANSI colors are disabled (506a482)
7+ -  ** fmt** : Fixed mis-aligned levels when ANSI colors are disabled (eba1adb)
8+ -  Fixed warnings on nightly Rust compilers (#558  )
9+ 
110# 0.2.0-alpha.5 (January 31, 2020)  
211
312### Added  
Original file line number Diff line number Diff line change 11[package ]
22name  = " tracing-subscriber" 
3- version  = " 0.2.0-alpha.5 " 
3+ version  = " 0.2.0-alpha.6 " 
44authors  = [
55    " Eliza Weisman <[email protected] >" ,
 66    " David Barsky <[email protected] >" ,
 
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ Utilities for implementing and composing [`tracing`][tracing] subscribers.
1717[ crates-badge ] : https://img.shields.io/crates/v/tracing-subscriber.svg 
1818[ crates-url ] : https://crates.io/crates/tracing-subscriber 
1919[ docs-badge ] : https://docs.rs/tracing-subscriber/badge.svg 
20- [ docs-url ] : https://docs.rs/tracing-subscriber/0.2.0-alpha.5  
20+ [ docs-url ] : https://docs.rs/tracing-subscriber/0.2.0-alpha.6  
2121[ docs-master-badge ] : https://img.shields.io/badge/docs-master-blue 
2222[ docs-master-url ] : https://tracing-rs.netlify.com/tracing_subscriber 
2323[ mit-badge ] : https://img.shields.io/badge/license-MIT-blue.svg 
Original file line number Diff line number Diff line change 5151//! [`env_logger` crate]: https://crates.io/crates/env_logger 
5252//! [`parking_lot`]: https://crates.io/crates/parking_lot 
5353//! [`registry`]: registry/index.html 
54- #![ doc( html_root_url = "https://docs.rs/tracing-subscriber/0.2.0-alpha.5 " ) ]  
54+ #![ doc( html_root_url = "https://docs.rs/tracing-subscriber/0.2.0-alpha.6 " ) ]  
5555#![ cfg_attr( docsrs,  feature( doc_cfg) ) ]  
5656#![ warn(  
5757    missing_debug_implementations,  
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ fn main() {
9393``` toml 
9494[dependencies ]
9595tracing  = " 0.1" 
96- tracing-subscriber  = " 0.2.0-alpha.5 " 
96+ tracing-subscriber  = " 0.2.0-alpha.6 " 
9797``` 
9898
9999This subscriber will be used as the default in all threads for the remainder of the duration
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments