Set the logging level of this handler. level must be an int or a str.
(self, level)
| 934 | self.lock.release() |
| 935 | |
| 936 | def setLevel(self, level): |
| 937 | """ |
| 938 | Set the logging level of this handler. level must be an int or a str. |
| 939 | """ |
| 940 | self.level = _checkLevel(level) |
| 941 | |
| 942 | def format(self, record): |
| 943 | """ |
nothing calls this directly
no test coverage detected