diff --git a/src/main.rs b/src/main.rs index f2ec593bfd..1cd697039f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -85,6 +85,7 @@ async fn write(req: hyper::Request, app: Arc) -> Result, let body = str::from_utf8(&body).unwrap(); let mut points = line_parser::parse(body).expect("TODO: Unable to parse lines"); + debug!("Parsed {} points", points.len()); app.db .write_points(write_info.org, bucket_id, &mut points)