MCPcopy Index your code
hub / github.com/python/cpython / hasHandlers

Method hasHandlers

Lib/logging/__init__.py:1969–1973  ·  view source on GitHub ↗

See if the underlying logger has any handlers.

(self)

Source from the content-addressed store, hash-verified

1967 return self.logger.getEffectiveLevel()
1968
1969 def hasHandlers(self):
1970 """
1971 See if the underlying logger has any handlers.
1972 """
1973 return self.logger.hasHandlers()
1974
1975 def _log(self, level, msg, args, **kwargs):
1976 """

Callers

nothing calls this directly

Calls 1

hasHandlersMethod · 0.45

Tested by

no test coverage detected