lower some logs

This commit is contained in:
minish 2024-05-25 01:27:14 -04:00
parent 698643988a
commit 38c4447da8
Signed by: min
GPG Key ID: FEECFF24EF0CE9E9
2 changed files with 2 additions and 3 deletions

View File

@ -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

View File

@ -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;