From 33fe6534cb58d30d9759a0107edd9e22a5b1fe2f Mon Sep 17 00:00:00 2001 From: Franklin Date: Mon, 29 Aug 2022 12:48:05 -0400 Subject: [PATCH] Added a pretty printer and changed request log level to debug --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/extensions/read_body.rs | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9486663..3527351 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -183,7 +183,7 @@ dependencies = [ [[package]] name = "actix-web-utils" -version = "0.1.6" +version = "0.1.7" dependencies = [ "actix-web", "env_logger", diff --git a/Cargo.toml b/Cargo.toml index bf47841..dfe9f2d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-web-utils" -version = "0.1.6" +version = "0.1.7" edition = "2021" authors = ["Franklin E. Blanco"] description = "Just some useful addons for actix web." diff --git a/src/extensions/read_body.rs b/src/extensions/read_body.rs index aa461e9..a742935 100644 --- a/src/extensions/read_body.rs +++ b/src/extensions/read_body.rs @@ -9,6 +9,7 @@ use actix_web::{ Error, HttpMessage, }; use futures_util::{future::LocalBoxFuture, stream::StreamExt}; +use log::debug; /// Pass this struct to App::new().wrap(HERE) to log the request body each time a request is made. Stole it from here: pub struct Logging; @@ -59,7 +60,7 @@ where body.extend_from_slice(&chunk?); } - println!("request body: {body:?}"); + debug!("Incoming Request body: {:#?}", body); let res = svc.call(req).await?; println!("response: {:?}", res.headers());