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
  • Application Configuration: LoggerConfig for application-level prefix and format setup
  • 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")

Application Configuration

from ds_common_logger_py_lib import LoggerConfig, Logger
import logging

# Configure at application startup
LoggerConfig.configure(
    prefix="MyApp",
    format_string="[%(asctime)s][{prefix}][%(name)s][%(levelname)s]: %(message)s",
    level=logging.INFO
)

logger = Logger.get_logger(__name__)
logger.info("Application started")

# Update prefix at runtime
LoggerConfig.set_prefix("MyApp-session123")
logger.info("Session initialized")

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

Uploaded Python 3

File details

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

File metadata

File hashes

Hashes for ds_common_logger_py_lib-0.1.0a3.tar.gz
Algorithm Hash digest
SHA256 347e8e0e409e5fd4c3c9a0b46ec786a51915e0a1d2160df96b2125928c276032
MD5 e7249aee23bb65b89673b1232827061c
BLAKE2b-256 57eac507654b981048b5544ee9103b7ce59511d7f60c274e960994b218536195

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ds_common_logger_py_lib-0.1.0a3-py3-none-any.whl
Algorithm Hash digest
SHA256 eb6b36e10eb66b42c8f05053ccbaf7135cdda4691ece787a529a6359e5156cdf
MD5 ada8687ccf10d95ca64eef0793cdf4b6
BLAKE2b-256 bdb62dbde27c72f8083601547760b3a1724ccc1184cb1364ec3a25fb96a984c7

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