Set the verbosity level of the root logger for the library to DEBUG.
()
| 99 | |
| 100 | |
| 101 | def set_verbosity_debug() -> None: |
| 102 | """ |
| 103 | Set the verbosity level of the root logger for the library to DEBUG. |
| 104 | """ |
| 105 | set_verbosity(logging.DEBUG) |
| 106 | |
| 107 | |
| 108 | def set_verbosity_info() -> None: |
nothing calls this directly
no test coverage detected