Skip to content

Commit

Permalink
Remove unnecessary logging
Browse files Browse the repository at this point in the history
  • Loading branch information
heringerp committed Jun 5, 2024
1 parent f90e0dd commit 968ad3e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/io.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1114,7 +1114,7 @@ pub fn write_ordered_table<W: Write>(
}
let n = columns.first().unwrap_or(&Vec::new()).len();
for i in 1..n {
write!(out, "{}", index[i-1])?;
write!(out, "{}", index[i - 1])?;
for j in 0..columns.len() {
write!(out, "\t{:0}", columns[j][i].floor())?;
}
Expand Down Expand Up @@ -1213,8 +1213,6 @@ pub fn write_ordered_histgrowth_table<W: Write>(
std::env::args().collect::<Vec<String>>().join(" ")
)?;

log::info!("abacus_group: {:?}", abacus_group.groups);

let mut output_columns: Vec<Vec<f64>> = hist_aux
.coverage
.par_iter()
Expand Down

0 comments on commit 968ad3e

Please sign in to comment.