Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fuzz: Remove printing in fuzz_physics.
Browse files Browse the repository at this point in the history
This spams logs for no current benefit.
kpreid committed Nov 8, 2024
1 parent 6a87069 commit dd1d442
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions fuzz/fuzz_targets/fuzz_physics.rs
Original file line number Diff line number Diff line change
@@ -23,11 +23,11 @@ fuzz_target!(|input: ([FreeCoordinate; 3], [FreeCoordinate; 3], Space)| {
return;
}

println!(
"{} {}",
position.refmt(&ConciseDebug),
velocity.refmt(&ConciseDebug)
);
// println!(
// "{} {}",
// position.refmt(&ConciseDebug),
// velocity.refmt(&ConciseDebug)
// );

let mut universe = Universe::new();
let space_handle = universe.insert_anonymous(space);

0 comments on commit dd1d442

Please sign in to comment.