mirror of
https://github.com/goauthentik/authentik.git
synced 2026-06-18 11:29:26 +03:00
1b4b50650c
* website: Fix typos. * wip
12 lines
475 B
Markdown
12 lines
475 B
Markdown
- `ak_logger`: structlog BoundLogger. See [structlog documentation](https://www.structlog.org/en/stable/api.html#structlog.BoundLogger)
|
|
|
|
Example:
|
|
|
|
```python
|
|
ak_logger.debug("This is a test message")
|
|
ak_logger.warning("This will be logged with a warning level")
|
|
ak_logger.info("Passing structured data", request=request)
|
|
```
|
|
|
|
- `requests`: requests Session object. See [requests documentation](https://requests.readthedocs.io/en/master/user/advanced/)
|