MCPcopy
hub / github.com/scrapy/scrapy / log_reactor_info

Function log_reactor_info

scrapy/utils/log.py:199–208  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

197
198
199def log_reactor_info() -> None:
200 from twisted.internet import reactor
201
202 logger.debug("Using reactor: %s.%s", reactor.__module__, reactor.__class__.__name__)
203 if isinstance(reactor, asyncioreactor.AsyncioSelectorReactor):
204 logger.debug(
205 "Using asyncio event loop: %s.%s",
206 reactor._asyncioEventloop.__module__,
207 reactor._asyncioEventloop.__class__.__name__,
208 )
209
210
211class StreamLogger:

Callers 1

_apply_settingsMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…