Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ We recommend setting up the `ScoutOtelHandler` using Python's [`dictConfig`](htt
```python
import logging
from logging.config import dictConfig
from scout_apm_python_logging import ScoutOtelHandler
from scout_apm_logging import ScoutOtelHandler

LOGGING_CONFIG = {
"version": 1,
Expand All @@ -40,7 +40,7 @@ LOGGING_CONFIG = {
"handlers": {
"otel": {
"level": "DEBUG",
"class": "scout_apm_python_logging.ScoutOtelHandler",
"class": "scout_apm_logging.ScoutOtelHandler",
"service_name": "your-service-name",
},
"console": {
Expand All @@ -67,7 +67,7 @@ You can also add the `ScoutOtelHandler` to an existing logger:

```python
import logging
from scout_apm_python_logging import ScoutOtelHandler
from scout_apm_logging import ScoutOtelHandler

# Get your logger
logger = logging.getLogger(__name__)
Expand Down Expand Up @@ -108,4 +108,4 @@ For more information on using Scout APM and advanced configuration options, plea

## Support

If you encounter any issues or have questions, please [open an issue](https://github.com/scoutapp/scout-apm-python-logging/issues) on our GitHub repository or contact our support team at [email protected].
If you encounter any issues or have questions, please [open an issue](https://github.com/scoutapp/scout-apm-python-logging/issues) on our GitHub repository or contact our support team at [email protected].
Loading