(loader: Loader)
| 9 | |
| 10 | |
| 11 | def load(loader: Loader): |
| 12 | logger.info("This is some informative text.") |
| 13 | logger.warning("This is a warning.") |
| 14 | logger.error("This is an error.") |
| 15 | logger.log( |
| 16 | ALERT, |
| 17 | "This is an alert. It has the same urgency as info, but will also pop up in the status bar.", |
| 18 | ) |