lower some logs
This commit is contained in:
parent
698643988a
commit
38c4447da8
|
@ -208,7 +208,7 @@ impl Engine {
|
||||||
// if we have an i/o task, send it off
|
// if we have an i/o task, send it off
|
||||||
// also cloning this is okay because it's a Bytes
|
// also cloning this is okay because it's a Bytes
|
||||||
if !coalesce_and_strip {
|
if !coalesce_and_strip {
|
||||||
info!("sending chunk to i/o task");
|
debug!("sending chunk to i/o task");
|
||||||
tx.map(|tx| tx.send(chunk.clone()));
|
tx.map(|tx| tx.send(chunk.clone()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -240,7 +240,7 @@ impl Engine {
|
||||||
img.encoder().bytes()
|
img.encoder().bytes()
|
||||||
})
|
})
|
||||||
}) {
|
}) {
|
||||||
info!("stripped exif data");
|
debug!("stripped exif data");
|
||||||
data
|
data
|
||||||
} else {
|
} else {
|
||||||
data
|
data
|
||||||
|
|
|
@ -10,7 +10,6 @@ use axum::{
|
||||||
|
|
||||||
use hyper::{http::HeaderValue, StatusCode};
|
use hyper::{http::HeaderValue, StatusCode};
|
||||||
use tokio_util::io::ReaderStream;
|
use tokio_util::io::ReaderStream;
|
||||||
use tracing::info;
|
|
||||||
|
|
||||||
use crate::engine::UploadData;
|
use crate::engine::UploadData;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue