Skip to main content

A Python package from the ds-common library collection

Project description

ds-common-logger-py-lib

A Python logging library from the ds-common library collection, providing structured logging with support for extra fields, class-based loggers, and flexible configuration.

Installation

Install the package using pip:

pip install ds-common-logger-py-lib

Or using uv (recommended):

uv pip install ds-common-logger-py-lib

Features

  • Structured Logging: Built-in support for extra fields in log messages
  • Class-Based Loggers: LoggingMixin provides automatic logger setup for classes
  • Per-Class Isolation: Each class gets its own logger instance with distinct names
  • Flexible Configuration: Set log levels at class level, instance level, or per-call
  • Customizable Format: Override default log format using set_log_format() method
  • Custom Formatter: Includes extra fields in JSON format for better log parsing
  • Standard Library Compatible: Built on Python's logging module

Quick Start

Basic Usage

from ds_common_logger_py_lib import Logger

# Initialize logger configuration
Logger()

# Get a logger instance
logger = Logger.get_logger(__name__)

# Log with extra fields
logger.info("Processing data", extra={"user_id": 123, "action": "process"})

Using LoggingMixin

from ds_common_logger_py_lib import LoggingMixin
import logging

class UserService(LoggingMixin):
    log_level = logging.INFO

    def create_user(self, username: str) -> dict:
        self.log.info("Creating user", extra={"username": username})
        return {"id": 1, "username": username}

# Use the service
service = UserService()
service.create_user("alice")

Usage Examples

Setting Log Levels

from ds_common_logger_py_lib import LoggingMixin
import logging

class MyService(LoggingMixin):
    log_level = logging.DEBUG  # Set default level for the class

    def process(self):
        self.log.debug("Debug message")
        self.log.info("Info message")

# Or change level at runtime
MyService.set_log_level(logging.WARNING)

# Or override per call
logger = MyService.logger(level=logging.DEBUG)
logger.debug("This will be shown")

Multiple Classes with Isolated Loggers

from ds_common_logger_py_lib import LoggingMixin

class UserService(LoggingMixin):
    def create_user(self, username: str):
        self.log.info("Creating user", extra={"username": username})

class OrderService(LoggingMixin):
    def create_order(self, user_id: int):
        self.log.info("Creating order", extra={"user_id": user_id})

# Each class has its own logger with distinct names
user_service = UserService()
order_service = OrderService()

Requirements

  • Python 3.9 or higher

Documentation

Full documentation is available at:

Development

To contribute or set up a development environment:

# Clone the repository
git clone https://github.com/grasp-labs/ds-common-logger-py-lib.git
cd ds-common-logger-py-lib

# Install development dependencies
uv sync --all-extras --dev

# Run tests
make test

See the README for more information.

License

This package is licensed under the Apache License 2.0. See the LICENSE-APACHE file for details.

Support

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ds_common_logger_py_lib-0.1.0a1.tar.gz (17.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ds_common_logger_py_lib-0.1.0a1-py3-none-any.whl (12.6 kB view details)

Uploaded Python 3

File details

Details for the file ds_common_logger_py_lib-0.1.0a1.tar.gz.

File metadata

File hashes

Hashes for ds_common_logger_py_lib-0.1.0a1.tar.gz
Algorithm Hash digest
SHA256 bd96a4f23d486d33c568cfb1a079b2203ddc30f37744e1b40d976bd6c723b1c4
MD5 2857c166aca224579c1de585199decc6
BLAKE2b-256 3fbe6f24349bc7e0a058fa31faf9854f0930eecc680be86a037103405a778a11

See more details on using hashes here.

File details

Details for the file ds_common_logger_py_lib-0.1.0a1-py3-none-any.whl.

File metadata

File hashes

Hashes for ds_common_logger_py_lib-0.1.0a1-py3-none-any.whl
Algorithm Hash digest
SHA256 4cae9c07461dcd17b8efff9a6b4ed843c1da2ae685ad950993b63846c374a8b0
MD5 5bb1dabcdf7db9cf9d513f3517fc9ec1
BLAKE2b-256 2ee5d4a0e8a59d6e3865b2ce2d103807572798fad8e0ffa670753f817c74f2ba

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page