Skip to content

Commit

Permalink
Remove debugging prints
Browse files Browse the repository at this point in the history
  • Loading branch information
marcua committed Nov 2, 2024
1 parent aa44853 commit 11dd862
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/hosted_db/sandbox.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ pub async fn run_in_sandbox(
.arg(tmp_db_path)
.arg((query_mode as i16).to_string())
.arg(query);
println!("The commmand {:?}", cmd);

let mut child = cmd.stdout(Stdio::piped()).stderr(Stdio::piped()).spawn()?;

Expand Down
1 change: 0 additions & 1 deletion src/hosted_db/sqlite.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ pub async fn potentially_isolated_sqlite_query(
let result =
run_in_sandbox(Path::new(&isolation.nsjail_path), path, query, query_mode).await?;

println!("Results {:?}", result);
if !result.stderr.is_empty() {
let error: AybError = serde_json::from_str(&result.stderr)?;
return Err(error);
Expand Down

0 comments on commit 11dd862

Please sign in to comment.