From 10d9a1f77413e6c4fc7ca5a7b5f74e6c2b4d8e59 Mon Sep 17 00:00:00 2001 From: "Lance T. Erickson" Date: Wed, 22 Jan 2025 09:58:54 -0600 Subject: [PATCH] Update package name The documentation was not updated when the package was renamed before publication. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index cf806cc..45eb2c0 100644 --- a/README.md +++ b/README.md @@ -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, @@ -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": { @@ -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__) @@ -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 support@scoutapm.com. \ No newline at end of file +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 support@scoutapm.com.