diff --git a/Web/Scotty/Route.hs b/Web/Scotty/Route.hs
--- a/Web/Scotty/Route.hs
+++ b/Web/Scotty/Route.hs
@@ -171,8 +171,7 @@
         shouldParseBody = isJust $ Parse.getRequestBodyType req
 
     (formparams, fs) <- if shouldParseBody
-      then liftIO $ do putStrLn "consuming body"
-                       wholeBody <- BL.toChunks `fmap` bs
+      then liftIO $ do wholeBody <- BL.toChunks `fmap` bs
                        parseRequestBody wholeBody Parse.lbsBackEnd req
       else return ([], [])
 
diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,6 @@
+## 0.10.2
+* Removed debug statement from routes
+
 ## 0.10.1
 * `Parsable` instances for `Word`, `Word8`, `Word16`, `Word32`, `Word64`
    [adamflott]
diff --git a/scotty.cabal b/scotty.cabal
--- a/scotty.cabal
+++ b/scotty.cabal
@@ -1,5 +1,5 @@
 Name:                scotty
-Version:             0.10.1
+Version:             0.10.2
 Synopsis:            Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp
 Homepage:            https://github.com/scotty-web/scotty
 Bug-reports:         https://github.com/scotty-web/scotty/issues
