Set the logging level of this handler. level must be an int or a str.
(self, level)
| 983 | self.lock.release() |
| 984 | |
| 985 | def setLevel(self, level): |
| 986 | """ |
| 987 | Set the logging level of this handler. level must be an int or a str. |
| 988 | """ |
| 989 | self.level = _checkLevel(level) |
| 990 | |
| 991 | def format(self, record): |
| 992 | """ |
nothing calls this directly
no test coverage detected