Skip to content

Commit

Permalink
Bump log filter to error
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinquaXD committed Jan 22, 2025
1 parent d746d0c commit 606ddf2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crates/observe/src/request_id.rs
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ mod test {

#[tokio::test]
async fn request_id_from_current_span() {
crate::tracing::initialize_reentrant("debug");
crate::tracing::initialize_reentrant("error");
async {
assert_eq!(
Some("test".to_string()),
Expand All @@ -161,7 +161,7 @@ mod test {

#[tokio::test]
async fn request_id_from_ancestor_span() {
crate::tracing::initialize_reentrant("debug");
crate::tracing::initialize_reentrant("error");
async {
async {
async {
Expand All @@ -183,7 +183,7 @@ mod test {

#[tokio::test]
async fn request_id_from_first_ancestor_span() {
crate::tracing::initialize_reentrant("debug");
crate::tracing::initialize_reentrant("error");
async {
async {
async {
Expand All @@ -205,7 +205,7 @@ mod test {

#[tokio::test]
async fn request_id_within_spawned_task() {
crate::tracing::initialize_reentrant("debug");
crate::tracing::initialize_reentrant("error");
async {
tokio::spawn(
async {
Expand Down

0 comments on commit 606ddf2

Please sign in to comment.