summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2017-08-19 16:12:05 +0000
committerLars Wirzenius <liw@liw.fi>2017-08-19 16:12:05 +0000
commitfefa00358eb09c567a14f3dc4709a4025b9527e2 (patch)
treeb3c815ac2f76a606ddae2fbaa7807e4ff6610451
parent6eaed3824fac4625710f0680658dbbadb5909852 (diff)
downloadapifw-fefa00358eb09c567a14f3dc4709a4025b9527e2.tar.gz
Fix: drop extraneous log statement
-rw-r--r--apifw/bottleapp.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/apifw/bottleapp.py b/apifw/bottleapp.py
index e5f1343..9a2916e 100644
--- a/apifw/bottleapp.py
+++ b/apifw/bottleapp.py
@@ -194,7 +194,6 @@ class BottleApplication:
def _callback_with_body(self, callback):
def wrapper(*args, **kwargs):
content_type, body = self._get_request_body()
- ick2.log.log('xxx', msg_text='got request body', content_type=content_type, body=repr(body))
response = callback(content_type, body, *args, **kwargs)
return bottle.HTTPResponse(
status=response['status'], body=response['body'],