feat: Add some debug logging when receiving a write request
parent
6791b9598c
commit
2ecb3b0525
|
@ -85,6 +85,7 @@ async fn write(req: hyper::Request<Body>, app: Arc<App>) -> Result<Option<Body>,
|
||||||
let body = str::from_utf8(&body).unwrap();
|
let body = str::from_utf8(&body).unwrap();
|
||||||
|
|
||||||
let mut points = line_parser::parse(body).expect("TODO: Unable to parse lines");
|
let mut points = line_parser::parse(body).expect("TODO: Unable to parse lines");
|
||||||
|
debug!("Parsed {} points", points.len());
|
||||||
|
|
||||||
app.db
|
app.db
|
||||||
.write_points(write_info.org, bucket_id, &mut points)
|
.write_points(write_info.org, bucket_id, &mut points)
|
||||||
|
|
Loading…
Reference in New Issue