chore: remove content debug

This commit is contained in:
Jesús Pérez 2024-10-17 16:08:06 +01:00
parent 30c705dcde
commit 3b95a393e9
No known key found for this signature in database

View File

@ -18,7 +18,6 @@ fn parse_content(
contents: String,
re: Regex,
) -> BTreeMap<String, BTreeMap<SystemTime, f64>> {
dbg!(&contents);
let mut metrics: BTreeMap<String, BTreeMap<SystemTime, Vec<f64>>> = BTreeMap::new();
let show_invalid_line = | index: usize, line: &str | println!("invalid line: {} {}", index, line);
@ -165,4 +164,4 @@ mod tests {
assert_eq!(lines.join("\n"),data_metrics.join("\n"));
}
}
}