Returns the current logging level. Returns: A Python logging level.
()
| 36 | |
| 37 | |
| 38 | def get_log_level() -> int: |
| 39 | """Returns the current logging level. |
| 40 | |
| 41 | Returns: |
| 42 | A Python logging level. |
| 43 | """ |
| 44 | ct2_level = _ext.get_log_level() |
| 45 | return _CT2_TO_PYTHON_LEVEL[ct2_level] |
nothing calls this directly
no outgoing calls
no test coverage detected