Skip to content

Commit

Permalink
fix tracing according to feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbarsky committed Oct 12, 2023
1 parent 5b2249b commit 649b6ce
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 24 deletions.
23 changes: 15 additions & 8 deletions tracing-appender/CHANGELOG.md
Expand Up @@ -2,18 +2,25 @@

This release has a large number of changes to `tracing-appender`:


### Added
- **non_blocking**: -Name spawned worker thread (#2219)
- **non_blocking**: Allow worker thread name to be configured (#2365)
- **rolling**: `RollingFileAppender::builder` for configuring `RollingFileAppender`s (#2227)
- **rolling**: `Builder::filename_suffix` method to configure the suffix for log files (#2225)
- **rolling**: `Builder::max_log_files` method to enable automatically deleting old log files (#2323)
- **non_blocking**: -Name spawned worker thread [#2219]
- **non_blocking**: Allow worker thread name to be configured [#2365]
- **rolling**: `RollingFileAppender::builder` for configuring `RollingFileAppender`s [#2227]
- **rolling**: `Builder::filename_suffix` method to configure the suffix for log files [#2225]
- **rolling**: `Builder::max_log_files` method to enable automatically deleting old log files [#2323]

### Documented

- **rolling**: Clarify file appender docs (#2689)
- **rolling**: Fix typo in RollingFileAppender docs (#2375)
- **rolling**: Clarify file appender docs [#2689]
- **rolling**: Fix typo in RollingFileAppender docs [#2375]

[#2219]: https://github.com/tokio-rs/tracing/pull/2674
[#2365]: https://github.com/tokio-rs/tracing/pull/2365
[#2227]: https://github.com/tokio-rs/tracing/pull/2227
[#2225]: https://github.com/tokio-rs/tracing/pull/2225
[#2323]: https://github.com/tokio-rs/tracing/pull/2323
[#2689]: https://github.com/tokio-rs/tracing/pull/2689
[#2375]: https://github.com/tokio-rs/tracing/pull/2375

# 0.2.2 (March 17, 2022)

Expand Down
37 changes: 21 additions & 16 deletions tracing/CHANGELOG.md
Expand Up @@ -2,28 +2,33 @@

### Added

- allow constant field names in macros (#2617)
- allow setting event names in macros (#2699)
- allow `ValueSet`s of any length (#2508)

### Changed

- use fully qualified names in macros for items exported from std prelude (#2621)
- Allow constant field names in macros [#2617]
- Allow setting event names in macros [#2699]
- Allow `ValueSet`s of any length [#2508]

### Fixed

- remove potentially problematic test (#2728)
- fix `wasm_bindgen_test` macros (#2675)
- silence `clippy::redundant_clone` warning (#2619)
- fix link to RAI pattern crate documentation (#2612)
- fix docs typos and warnings(#2581)
- Use fully qualified names in macros for items exported from std prelude [#2621]

### Documented

- Add `axum-insights` to relevant crates. (#2713)
- Add `clippy-tracing` to related crates (#2628)
- Add `tracing-cloudwatch` to related crates (#2667)
- Fix deadlink to `tracing-etw` repo (#2602)
- Add `axum-insights` to relevant crates. [#2713]
- Fix link to RAI pattern crate documentation [#2612]
- Fix docs typos and warnings [#2581]
- Add `clippy-tracing` to related crates [#2628]
- Add `tracing-cloudwatch` to related crates [#2667]
- Fix deadlink to `tracing-etw` repo [#2602]

[#2617]: https://github.com/tokio-rs/tracing/pull/2617
[#2699]: https://github.com/tokio-rs/tracing/pull/2699
[#2508]: https://github.com/tokio-rs/tracing/pull/2508
[#2621]: https://github.com/tokio-rs/tracing/pull/2621
[#2713]: https://github.com/tokio-rs/tracing/pull/2713
[#2581]: https://github.com/tokio-rs/tracing/pull/2581
[#2628]: https://github.com/tokio-rs/tracing/pull/2628
[#2667]: https://github.com/tokio-rs/tracing/pull/2667
[#2602]: https://github.com/tokio-rs/tracing/pull/2602


# 0.1.38 (April 25th, 2023)

Expand Down

0 comments on commit 649b6ce

Please sign in to comment.