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.10 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.0a2.tar.gz (17.7 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.0a2-py3-none-any.whl (12.9 kB view details)

Uploaded Python 3

File details

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

File metadata

File hashes

Hashes for ds_common_logger_py_lib-0.1.0a2.tar.gz
Algorithm Hash digest
SHA256 a81b97beac62441316bf96b64808ffc9c709076560ed4ca4de0c13f5b8c6e8f2
MD5 5df8f0ef887830038591a099935a1da6
BLAKE2b-256 7a269fe2d1de562471b73e54fab6c8304df2df2d0c06fd579b4cfd5ee199c704

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ds_common_logger_py_lib-0.1.0a2-py3-none-any.whl
Algorithm Hash digest
SHA256 5ffbc778bbc2716478b8a88808e63c4a24383457ef34fed6e31c29351fc2c4af
MD5 b7c85e5d5475e8edfdd303840dd3a9c5
BLAKE2b-256 9a50bac13ce92ea2c4ff4305496045975040bcd7f6c47008cd72632249fcefb5

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