Skip to content

Commit

Permalink
removed dbgs
Browse files Browse the repository at this point in the history
  • Loading branch information
enola-dkfz committed Nov 10, 2023
1 parent 5163838 commit d0ea0db
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,6 @@ async fn process_task(

let metadata: Metadata = serde_json::from_value(task.metadata.clone()).unwrap_or(Metadata {project: "obfuscate_me_please".to_string()});

dbg!(metadata.clone().project);

let run_result = run_query(task, &query, obf_cache, report_cache, metadata.project).await?;

info!("Reported successful execution of task {} to Beam.", task.id);
Expand Down Expand Up @@ -298,7 +296,6 @@ async fn run_cql_query(
let cql_result_new: String = match CONFIG.obfuscate {
config::Obfuscate::Yes => {
if !unobfuscated.contains(&project){
dbg!("obfuscated");
obfuscate_counts_mr(
&cql_result,
obf_cache,
Expand All @@ -313,7 +310,6 @@ async fn run_cql_query(
CONFIG.rounding_step,
)?
} else {
dbg!("not obfuscated");
cql_result
}
},
Expand Down

0 comments on commit d0ea0db

Please sign in to comment.