MCPcopy
hub / github.com/mitmproxy/mitmproxy / debug

Method debug

mitmproxy/log.py:129–138  ·  view source on GitHub ↗

Log with level debug.

(self, txt)

Source from the content-addressed store, hash-verified

127 self.master = master
128
129 def debug(self, txt):
130 """
131 Log with level debug.
132 """
133 warnings.warn(
134 "mitmproxy's ctx.log.debug() is deprecated. Please use the standard Python logging module instead.",
135 DeprecationWarning,
136 stacklevel=2,
137 )
138 logging.getLogger().debug(txt)
139
140 def info(self, txt):
141 """

Callers 11

proxMethod · 0.45
test_outputFunction · 0.45
loadMethod · 0.45
__init__Method · 0.45
replaceMethod · 0.45
responseMethod · 0.45
requestMethod · 0.45
responseMethod · 0.45
ValueEditorClass · 0.45

Calls 1

warnMethod · 0.80

Tested by 1

test_outputFunction · 0.36