Get the effective level for the underlying logger.
(self)
| 1961 | self.logger.setLevel(level) |
| 1962 | |
| 1963 | def getEffectiveLevel(self): |
| 1964 | """ |
| 1965 | Get the effective level for the underlying logger. |
| 1966 | """ |
| 1967 | return self.logger.getEffectiveLevel() |
| 1968 | |
| 1969 | def hasHandlers(self): |
| 1970 | """ |
nothing calls this directly
no test coverage detected