MCPcopy Index your code
hub / github.com/RustPython/RustPython / setLevel

Method setLevel

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

Set the specified level on the underlying logger.

(self, level)

Source from the content-addressed store, hash-verified

1963 return self.logger.isEnabledFor(level)
1964
1965 def setLevel(self, level):
1966 """
1967 Set the specified level on the underlying logger.
1968 """
1969 self.logger.setLevel(level)
1970
1971 def getEffectiveLevel(self):
1972 """

Callers 1

test_flatMethod · 0.95

Calls 1

setLevelMethod · 0.45

Tested by 1

test_flatMethod · 0.76