Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(api): fix accidental exhaustive matching on
metadata::Kind
The `tracing_core::metadata::Kind` type was not intended to be matched exhaustively, so that its internal representation could be changed without causing a breaking change. However, some fairly recent compiler changes broke this, and made the type exhaustively matched. This resulted in `tracing-core` 0.1.22 breaking `console-api`. This PR fixes the breakage by changing `console-api` to avoid exhaustively matching on `Kind`s. Fixes #270
- Loading branch information