Skip to content

Commit

Permalink
additional logging at trace level
Browse files Browse the repository at this point in the history
  • Loading branch information
enola-dkfz committed Feb 5, 2025
1 parent 42fe577 commit edabb39
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/blaze.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use reqwest::StatusCode;
use serde::Deserialize;
use serde::Serialize;
use serde_json::Value;
use tracing::{debug, warn, info};
use tracing::{debug, warn, info, trace};

use crate::errors::FocusError;
use crate::util;
Expand Down
3 changes: 3 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -410,6 +410,9 @@ async fn run_cql_query(
replace_cql_library(query.clone())?
};

trace!("Library: {}", &query.lib);
trace!("Measure: {}", &query.measure);

let cql_result = blaze::run_cql_query(&query.lib, &query.measure).await?;

trace!("MeasureReport with unobfuscated values: {}", &cql_result);
Expand Down

0 comments on commit edabb39

Please sign in to comment.