Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: keepsimple1/tracing

Tags

tracing-subscriber-0.3.5

Toggle tracing-subscriber-0.3.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
subscriber: prepare to release 0.3.5 (tokio-rs#1810)

# 0.3.5 (Dec 29, 2021)

This release re-enables `RUST_LOG` filtering in
`tracing_subscriber::fmt`'s default initialization methods, and adds an
`OffsetLocalTime` formatter for using local timestamps with the `time`
crate.

### Added

- **fmt**: Added `OffsetLocalTime` formatter to `fmt::time` for
  formatting local timestamps with a fixed offset ([tokio-rs#1772])

### Fixed

- **fmt**: Added a `Targets` filter to `fmt::init()` and
  `fmt::try_init()` when the "env-filter" feature is disabled, so that
  `RUST_LOG` is still honored ([tokio-rs#1781])

Thanks to @marienz and @ishitatsuyuki for contributing to this release!

[tokio-rs#1772]: tokio-rs#1772
[tokio-rs#1781]: tokio-rs#1781

tracing-journald-0.2.1

Toggle tracing-journald-0.2.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
journald: prepare to release 0.2.1 (tokio-rs#1811)

# 0.2.1 (December 29, 2021)

This release improves how `tracing-journald` communicates with `journald`,
including the handling of large payloads.

### Added

- Use an unconnected socket, so that logging can resume after a `journald`
  restart ([tokio-rs#1758])

### Fixed

- Fixed string values being written using `fmt::Debug` ([tokio-rs#1714])
- Fixed `EMSGSIZE` when log entries exceed a certain size ([tokio-rs#1744])

A huge thank-you to new contributor @lunaryorn, for contributing all of the
changes in this release!

[tokio-rs#1714]: tokio-rs#1714
[tokio-rs#1744]: tokio-rs#1744
[tokio-rs#1758]: tokio-rs#1758

tracing-subscriber-0.3.4

Toggle tracing-subscriber-0.3.4's commit message
# 0.3.4 (Dec 23, 2021)

This release contains bugfixes for the `fmt` module, as well as documentation
improvements.

### Fixed

- **fmt**: Fixed `fmt` not emitting log lines when timestamp formatting fails
  ([tokio-rs#1689])
- **fmt**: Fixed double space before thread IDs with `Pretty` formatter
  ([tokio-rs#1778])
- Several documentation improvements ([tokio-rs#1608], [tokio-rs#1699], [tokio-rs#1701])

[tokio-rs#1689]: tokio-rs#1689
[tokio-rs#1778]: tokio-rs#1778
[tokio-rs#1608]: tokio-rs#1608
[tokio-rs#1699]: tokio-rs#1699
[tokio-rs#1701]: tokio-rs#1701

Thanks to new contributors @Swatinem and @rukai for contributing to this
release!

tracing-flame-0.2.0

Toggle tracing-flame-0.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
 chore: fix typos in tracing-appender's README (tokio-rs#1780)

Co-authored-by: Alexander Zaitsev <[email protected]>
Co-authored-by: Eliza Weisman <[email protected]>

tracing-subscriber-0.3.3

Toggle tracing-subscriber-0.3.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
subscriber: prepare to release 0.3.3 (tokio-rs#1757)

# 0.3.3 (Nov 29, 2021)

This release fixes a pair of regressions in `tracing-subscriber`'s `fmt`
module.

### Fixed

- **fmt**: Fixed missing event fields with `Compact` formatter ([tokio-rs#1755])
- **fmt**: Fixed `PrettyFields` formatter (and thus `format::Pretty`
  event formatter) ignoring the `fmt::Layer`'s ANSI color code
  configuration ([tokio-rs#1747])

[tokio-rs#1755]: tokio-rs#1755
[tokio-rs#1747]: tokio-rs#1747

tracing-subscriber-0.3.2

Toggle tracing-subscriber-0.3.2's commit message

Verified

This commit was signed with the committer’s verified signature.
hawkw Eliza Weisman
subscriber: prepare to release v0.3.2

# 0.3.2 (Nov 19, 2021)

### Fixed

- **fmt**: Fixed `MakeWriter` filtering not working with `BoxMakeWriter`
  ([tokio-rs#1694])

### Added

- **fmt**: `Writer::has_ansi_escapes` method to check if an output
  supports ANSI terminal formatting escape codes ([tokio-rs#1696])
- **fmt**: Added additional ANSI terminal formatting to field formatters
  when supported ([tokio-rs#1702])
- **fmt**: Added `FmtContext::span_scope`, `FmtContext::event_scope`,
  and `FmtContext::parent_span` methods for accessing the current span
  and its scope when formatting an event ([tokio-rs#1728])
- **fmt**: Improved documentation on implementing event formatters
  ([tokio-rs#1727])

[tokio-rs#1694]: tokio-rs#1694
[tokio-rs#1696]: tokio-rs#1696
[tokio-rs#1702]: tokio-rs#1702
[tokio-rs#1728]: tokio-rs#1728
[tokio-rs#1727]: tokio-rs#1727

tracing-subscriber-0.3.1

Toggle tracing-subscriber-0.3.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
subscriber: prepare to release v0.3.1 (tokio-rs#1687)

# 0.3.1 (Oct 25, 2021)

This release fixes a few issues related to feature flagging.

### Fixed

- **time**: Compilation error when enabling the "time" feature flag
  without also enabling the "local-time" feature flag ([tokio-rs#1685])
- **registry**: Unused method warnings when the "std" feature is enabled
  but the "registry" feature is disabled ([tokio-rs#1686])

[tokio-rs#1685]: tokio-rs#1685
[tokio-rs#1686]: tokio-rs#1686

tracing-opentelemetry-0.16.0

Toggle tracing-opentelemetry-0.16.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
error: prepare to release v0.2.0 (tokio-rs#1681)

# 0.2.0 (October 23, 2021)

This is a breaking change release in order to update the
`tracing-subscriber` dependency version to [the v0.3.x release
series][v03].

### Changed

- Updated `tracing-subscriber` dependency to [v0.3.0][v03] ([tokio-rs#1677])

### Fixed

- Disabled default features of the `tracing` dependency so that
  proc-macro dependencies are not enabled ([tokio-rs#1144])
- Documentation fixes and improvements ([tokio-rs#635], [tokio-rs#695])

### Added

- **SpanTrace**: Added `SpanTrace::new` constructor for constructing a
  `SpanTrace` from a `Span` passed as an argument (rather than capturing
  the current span) ([tokio-rs#1492])

Thanks to @CAD97 for contributing to this release!

[v03]: https://github.com/tokio-rs/tracing/releases/tag/tracing-subscriber-0.3.0
[tokio-rs#635]: tokio-rs#635
[tokio-rs#695]: tokio-rs#695
[tokio-rs#1144]: tokio-rs#1144
[tokio-rs#1492]: tokio-rs#1492
[tokio-rs#1677]: tokio-rs#1677

tracing-journald-0.2.0

Toggle tracing-journald-0.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
journald: prepare to release v0.2.0 (tokio-rs#1679)

# 0.2.0 (October 22, 2021)

This release updates the `tracing-subscriber` dependency to v0.3.x.

tracing-error-0.2.0

Toggle tracing-error-0.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
error: prepare to release v0.2.0 (tokio-rs#1681)

# 0.2.0 (October 23, 2021)

This is a breaking change release in order to update the
`tracing-subscriber` dependency version to [the v0.3.x release
series][v03].

### Changed

- Updated `tracing-subscriber` dependency to [v0.3.0][v03] ([tokio-rs#1677])

### Fixed

- Disabled default features of the `tracing` dependency so that
  proc-macro dependencies are not enabled ([tokio-rs#1144])
- Documentation fixes and improvements ([tokio-rs#635], [tokio-rs#695])

### Added

- **SpanTrace**: Added `SpanTrace::new` constructor for constructing a
  `SpanTrace` from a `Span` passed as an argument (rather than capturing
  the current span) ([tokio-rs#1492])

Thanks to @CAD97 for contributing to this release!

[v03]: https://github.com/tokio-rs/tracing/releases/tag/tracing-subscriber-0.3.0
[tokio-rs#635]: tokio-rs#635
[tokio-rs#695]: tokio-rs#695
[tokio-rs#1144]: tokio-rs#1144
[tokio-rs#1492]: tokio-rs#1492
[tokio-rs#1677]: tokio-rs#1677