Return the plugin logger. Safe to call before ``configure()`` — logging.getLogger is a noop without handlers, so early log calls just vanish rather than crashing.
()
| 122 | |
| 123 | |
| 124 | def get_logger() -> logging.Logger: |
| 125 | """Return the plugin logger. Safe to call before ``configure()`` — |
| 126 | logging.getLogger is a noop without handlers, so early log calls just |
| 127 | vanish rather than crashing.""" |
| 128 | return logging.getLogger(LOGGER_NAME) |
no outgoing calls
no test coverage detected