trace: Add static level filtering (#987)

## Motivation

`tokio-trace` should have static verbosity level filtering, like the
`log` crate. The static max verbosity level should be controlled at
compile time with a set of features. It should be possible to set a
separate max level for release and debug mode builds.

## Solution

We can do this fairly similarly to how the `log` crate does it:
`tokio-trace` should export a constant whose value is set based on the
static max level feature flags. Then, we add an if statement to the
`span!` and `event!` macros which tests if that event or span's level
is enabled.

Closes #959
This commit is contained in:
Son
2019-03-25 15:19:20 -07:00
committed by Eliza Weisman
parent 7793d63739
commit 1524ee4b60
8 changed files with 197 additions and 3 deletions
+7 -3
View File
@@ -101,7 +101,7 @@ macro_rules! span {
$name:expr,
$($k:ident $( = $val:expr )* ),*
) => {
{
if $lvl <= $crate::level_filters::STATIC_MAX_LEVEL {
use $crate::callsite;
use $crate::callsite::Callsite;
let callsite = callsite! {
@@ -120,6 +120,8 @@ macro_rules! span {
} else {
$crate::Span::new_disabled()
}
} else {
$crate::Span::new_disabled()
}
};
(
@@ -128,7 +130,7 @@ macro_rules! span {
$name:expr,
$($k:ident $( = $val:expr )* ),*
) => {
{
if $lvl <= $crate::level_filters::STATIC_MAX_LEVEL {
use $crate::callsite;
use $crate::callsite::Callsite;
let callsite = callsite! {
@@ -146,6 +148,8 @@ macro_rules! span {
} else {
$crate::Span::new_disabled()
}
} else {
$crate::Span::new_disabled()
}
};
(target: $target:expr, level: $lvl:expr, parent: $parent:expr, $name:expr) => {
@@ -334,7 +338,7 @@ macro_rules! span {
#[macro_export(local_inner_macros)]
macro_rules! event {
(target: $target:expr, $lvl:expr, { $( $k:ident = $val:expr ),* $(,)*} )=> ({
{
if $lvl <= $crate::level_filters::STATIC_MAX_LEVEL {
#[allow(unused_imports)]
use $crate::{callsite, dispatcher, Event, field::{Value, ValueSet}};
use $crate::callsite::Callsite;