MCPcopy
hub / github.com/mitmproxy/mitmproxy / info

Method info

mitmproxy/log.py:140–149  ·  view source on GitHub ↗

Log with level info.

(self, txt)

Source from the content-addressed store, hash-verified

138 logging.getLogger().debug(txt)
139
140 def info(self, txt):
141 """
142 Log with level info.
143 """
144 warnings.warn(
145 "mitmproxy's ctx.log.info() is deprecated. Please use the standard Python logging module instead.",
146 DeprecationWarning,
147 stacklevel=2,
148 )
149 logging.getLogger().info(txt)
150
151 def alert(self, txt):
152 """

Callers 15

make_requestFunction · 0.80
loadFunction · 0.80
runningFunction · 0.80
loadMethod · 0.80
proxMethod · 0.80
test_outputFunction · 0.80
test_cannot_printFunction · 0.80
mainFunction · 0.80
save_flows_contentFunction · 0.80
runningMethod · 0.80
runningMethod · 0.80

Calls 1

warnMethod · 0.80

Tested by 3

make_requestFunction · 0.64
test_outputFunction · 0.64
test_cannot_printFunction · 0.64