Skip to content
This repository has been archived by the owner on Jan 5, 2024. It is now read-only.

Commit

Permalink
feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
blampe committed Aug 12, 2015
1 parent 9cfabaa commit 9b2a77e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tchannel/tornado/dispatch.py
Expand Up @@ -109,7 +109,7 @@ def handle_pre_call(self, message, connection):
self.handle_call(req, connection)

except (InvalidChecksumError, StreamingError) as e:
log.warn('Received a bad request.')
log.warn('Received a bad request.', exc_info=True)

connection.send_error(
ErrorCode.bad_request,
Expand All @@ -132,7 +132,7 @@ def handle_call(self, request, connection):
request.endpoint += chunk
chunk = yield request.argstreams[0].read()

log.info('Received a call to %s.', request.endpoint)
log.debug('Received a call to %s.', request.endpoint)

# event: receive_request
request.tracing.name = request.endpoint
Expand Down

0 comments on commit 9b2a77e

Please sign in to comment.