Star us on GitHub
Star
Menu

Python App

Learn how to set up highlight.io Python log ingestion without a logging library.
1
Set up your frontend and backend highlight.io integration.

First, make sure you've followed the frontend getting started and backend getting started guides.

2
Call the built-in Python logging library.

Logs are automatically recorded by the highlight SDK. Arguments passed as a dictionary as the second parameter will be interpreted as structured key-value pairs that logs can be easily searched by.

import logging def main(): logging.info('hello, world!') logging.warn('whoa there', {'key': 'value'})
Copy
3
Verify your backend logs are being recorded.

Visit the highlight logs portal and check that backend logs are coming in.