feat: disable request logging, don't log ip

This commit is contained in:
neri 2024-01-26 14:18:27 +01:00
parent 40fba9992a
commit b4452fff37
2 changed files with 1 additions and 3 deletions

View File

@ -81,7 +81,6 @@ async fn main() -> std::io::Result<()> {
let http_server = HttpServer::new({
move || {
App::new()
.wrap(Logger::new(r#"%{r}a "%r" =%s %bbytes %Tsec"#))
.wrap(
DefaultHeaders::new()
.add(DEFAULT_CONTENT_SECURITY_POLICY)

View File

@ -49,8 +49,7 @@ pub async fn upload(
insert_file_metadata(&file_id, file_name, &file_path, &upload_config, db).await?;
log::info!(
"{} create new file {} (valid_till: {}, content_type: {}, delete_on_download: {})",
req.connection_info().realip_remote_addr().unwrap_or("-"),
"create new file {} (valid_till: {}, content_type: {}, delete_on_download: {})",
file_id,
upload_config.valid_till,
upload_config.content_type,