Skip to content

Commit e254efc

Browse files
authored
Update package name in documentation (#22)
The documentation was not updated when the package was renamed before publication.
1 parent a23d5b3 commit e254efc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ We recommend setting up the `ScoutOtelHandler` using Python's [`dictConfig`](htt
2727
```python
2828
import logging
2929
from logging.config import dictConfig
30-
from scout_apm_python_logging import ScoutOtelHandler
30+
from scout_apm_logging import ScoutOtelHandler
3131

3232
LOGGING_CONFIG = {
3333
"version": 1,
@@ -40,7 +40,7 @@ LOGGING_CONFIG = {
4040
"handlers": {
4141
"otel": {
4242
"level": "DEBUG",
43-
"class": "scout_apm_python_logging.ScoutOtelHandler",
43+
"class": "scout_apm_logging.ScoutOtelHandler",
4444
"service_name": "your-service-name",
4545
},
4646
"console": {
@@ -67,7 +67,7 @@ You can also add the `ScoutOtelHandler` to an existing logger:
6767

6868
```python
6969
import logging
70-
from scout_apm_python_logging import ScoutOtelHandler
70+
from scout_apm_logging import ScoutOtelHandler
7171

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

109109
## Support
110110

111-
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].
111+
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].

0 commit comments

Comments
 (0)