aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Okay <okay@toyful.space>2022-03-20 16:07:39 -0500
committerColin Okay <okay@toyful.space>2022-03-20 16:07:39 -0500
commit41075c2bde94bb43f07ee5598dc57965436634f6 (patch)
tree82e8ed4dca9585c50e355036b3a816e165626599
parent02874f575215f9665d99943a79541d4f849d50c3 (diff)
[tweak] remove spurious print statement
-rw-r--r--lazybones-hunchentoot.lisp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lazybones-hunchentoot.lisp b/lazybones-hunchentoot.lisp
index d39968f..6525846 100644
--- a/lazybones-hunchentoot.lisp
+++ b/lazybones-hunchentoot.lisp
@@ -203,7 +203,6 @@ HEADER-NAME can be a keyword or a string."
(defun request-body (&key (request lzb:*request*) (want-stream-p nil))
"Returns the decoded request body. The value returned depends upon
the value of the Content-Type request header."
- (print "in request body")
(if %request-body-cache% %request-body-cache%
(setf %request-body-cache%
(when (member (request-method request) +hunchentoot-methods-with-body+)