diff --git a/Cargo.toml b/Cargo.toml
index 0c4d3137..609b2ff3 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -29,6 +29,7 @@ members = [
   "awc",
   "actix-http",
   "actix-files",
+  "actix-framed",
   "actix-session",
   "actix-multipart",
   "actix-web-actors",
diff --git a/src/data.rs b/src/data.rs
index edaf32c8..c697bac5 100644
--- a/src/data.rs
+++ b/src/data.rs
@@ -96,8 +96,11 @@ impl<T: 'static, P> FromRequest<P> for Data<T> {
         if let Some(st) = req.app_config().extensions().get::<Data<T>>() {
             Ok(st.clone())
         } else {
-            log::debug!("Failed to construct App-level Data extractor. \
-                         Request path: {:?}", req.path());
+            log::debug!(
+                "Failed to construct App-level Data extractor. \
+                 Request path: {:?}",
+                req.path()
+            );
             Err(ErrorInternalServerError(
                 "App data is not configured, to configure use App::data()",
             ))
diff --git a/src/types/json.rs b/src/types/json.rs
index 99fd5b41..5044cf70 100644
--- a/src/types/json.rs
+++ b/src/types/json.rs
@@ -185,8 +185,11 @@ where
             JsonBody::new(req, payload)
                 .limit(limit)
                 .map_err(move |e| {
-                    log::debug!("Failed to deserialize Json from payload. \
-                                 Request path: {:?}", path);
+                    log::debug!(
+                        "Failed to deserialize Json from payload. \
+                         Request path: {:?}",
+                        path
+                    );
                     if let Some(err) = err {
                         (*err)(e, &req2)
                     } else {
diff --git a/src/types/query.rs b/src/types/query.rs
index 363d5619..0d37c45f 100644
--- a/src/types/query.rs
+++ b/src/types/query.rs
@@ -123,8 +123,11 @@ where
         serde_urlencoded::from_str::<T>(req.query_string())
             .map(|val| Ok(Query(val)))
             .unwrap_or_else(|e| {
-                log::debug!("Failed during Query extractor deserialization. \
-                             Request path: {:?}", req.path());  
+                log::debug!(
+                    "Failed during Query extractor deserialization. \
+                     Request path: {:?}",
+                    req.path()
+                );
                 Err(e.into())
             })
     }