diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2015-06-06 12:30:53 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2015-06-06 12:30:53 +1200 |
commit | 9c48bfb2a53bf3ac3c29408511e3126ada16afd8 (patch) | |
tree | 83fb642e503b1b062aa1718b4a0e2c95ba0f49ee /netlib/http2/frame.py | |
parent | f2d784896dd18ea7ded9b3a95bedcdceb3325213 (diff) | |
download | mitmproxy-9c48bfb2a53bf3ac3c29408511e3126ada16afd8.tar.gz mitmproxy-9c48bfb2a53bf3ac3c29408511e3126ada16afd8.tar.bz2 mitmproxy-9c48bfb2a53bf3ac3c29408511e3126ada16afd8.zip |
http2: ditch the logging for now
The API is well designed: it looks like we can get all the information
we need to expose debugging in the caller of the API.
Diffstat (limited to 'netlib/http2/frame.py')
-rw-r--r-- | netlib/http2/frame.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/netlib/http2/frame.py b/netlib/http2/frame.py index fc86c228..ac9b8d50 100644 --- a/netlib/http2/frame.py +++ b/netlib/http2/frame.py @@ -1,12 +1,9 @@ import struct -import logging from functools import reduce from hpack.hpack import Encoder, Decoder from .. import utils -log = logging.getLogger(__name__) - class FrameSizeError(Exception): pass |