mirror of
https://github.com/tokio-rs/tracing.git
synced 2025-09-29 14:00:52 +00:00
tracing: add tracing-web
to the list of related crates (#2283)
Fixes #2280 ## Motivation I've implemented an alternative to [`tracing-wasm`] to fix some issues that I had when using it (most are open as longer time bug reports, no need to recount them here). It should be more up to date with the current tracing framework and, being layer based, is easier to compose with other subscribers, e.g. supports formatting and timing on event logs out of the box. ## Solution Add the [`tracing-web`] crate to the list of related crates. [`tracing-wasm`]: (https://github.com/storyai/tracing-wasm) [`tracing-web`]: https://crates.io/crates/tracing-web/
This commit is contained in:
parent
9fccc013c8
commit
e4d3e36605
@ -390,6 +390,8 @@ are not maintained by the `tokio` project. These include:
|
||||
_inside_ of functions.
|
||||
- [`tracing-wasm`] provides a `Subscriber`/`Layer` implementation that reports
|
||||
events and spans via browser `console.log` and [User Timing API (`window.performance`)].
|
||||
- [`tracing-web`] provides a layer implementation of level-aware logging of events
|
||||
to web browsers' `console.*` and span events to the [User Timing API (`window.performance`)].
|
||||
- [`test-log`] takes care of initializing `tracing` for tests, based on
|
||||
environment variables with an `env_logger` compatible syntax.
|
||||
- [`tracing-unwrap`] provides convenience methods to report failed unwraps on `Result` or `Option` types to a `Subscriber`.
|
||||
@ -425,6 +427,7 @@ please let us know!)
|
||||
[`color-eyre`]: https://docs.rs/color-eyre
|
||||
[`spandoc`]: https://docs.rs/spandoc
|
||||
[`tracing-wasm`]: https://docs.rs/tracing-wasm
|
||||
[`tracing-web`]: https://crates.io/crates/tracing-web
|
||||
[`test-log`]: https://crates.io/crates/test-log
|
||||
[User Timing API (`window.performance`)]: https://developer.mozilla.org/en-US/docs/Web/API/User_Timing_API
|
||||
[`tracing-unwrap`]: https://docs.rs/tracing-unwrap
|
||||
|
@ -727,6 +727,8 @@
|
||||
//! in [bunyan] format, enriched with timing information.
|
||||
//! - [`tracing-wasm`] provides a `Subscriber`/`Layer` implementation that reports
|
||||
//! events and spans via browser `console.log` and [User Timing API (`window.performance`)].
|
||||
//! - [`tracing-web`] provides a layer implementation of level-aware logging of events
|
||||
//! to web browsers' `console.*` and span events to the [User Timing API (`window.performance`)].
|
||||
//! - [`tide-tracing`] provides a [tide] middleware to trace all incoming requests and responses.
|
||||
//! - [`test-log`] takes care of initializing `tracing` for tests, based on
|
||||
//! environment variables with an `env_logger` compatible syntax.
|
||||
@ -761,6 +763,7 @@
|
||||
//! [`tracing-bunyan-formatter`]: https://crates.io/crates/tracing-bunyan-formatter
|
||||
//! [bunyan]: https://github.com/trentm/node-bunyan
|
||||
//! [`tracing-wasm`]: https://docs.rs/tracing-wasm
|
||||
//! [`tracing-web`]: https://docs.rs/tracing-web
|
||||
//! [User Timing API (`window.performance`)]: https://developer.mozilla.org/en-US/docs/Web/API/User_Timing_API
|
||||
//! [`tide-tracing`]: https://crates.io/crates/tide-tracing
|
||||
//! [tide]: https://crates.io/crates/tide
|
||||
|
Loading…
x
Reference in New Issue
Block a user