Skip to main content

Features

  • Deduplicated Logging: Prevents duplicate log entries within each log file, keeping your logs concise and clean.
  • Per-Level Log Files: Saves log entries to separate files by level (Debug.txt, Info.txt, Warning.txt, Error.txt, Critical.txt) for easy tracking and analysis.
  • Automatic Log Cleanup: Periodically purges log entries older than your retention window (default: 24 hours), with full customization.
  • Thread-Safe: All logging and cleanup operations are safe for multi-threaded environments.
  • Console Output: Only errors and critical logs are printed to the console by default, with consistent formatting.
  • Flexible Integration: Just call HoloLog(logsDir) and start logging—no need to rewrite your codebase.

Installation

pip install HoloLog

Quick Start

from HoloLog import HoloLog
from pathlib import Path
import logging

# Initialize HoloLog (set your desired logs directory)
logsDir = Path("logs")
HoloLog(logsDir)

logger = logging.getLogger(__name__)

# Use standard logging
def loggingErrorTest():
    try:
        # Simulate an error for testing
        raise ValueError("This is a test error for logging.")
    except Exception as e:
        logger.error(f"An error occurred", exc_info=True)

How It Works

  • Deduplication: HoloLog compares each new log entry (except the timestamp/level prefix) to recent entries in its level’s file and writes only unique messages.
  • Cleanup: Log files are automatically cleaned in the background, keeping only entries within your retention window (default: 24 hours, configurable with LOG_RETENTION_HOURS in your .env or environment).
  • Retention: Customize how long logs are kept by setting the LOG_RETENTION_HOURS environment variable.

Configuration

  • Log Directory: Pass any Path to HoloLog(). Directory will be created if missing.

  • Log Retention: Set the number of hours to keep log entries:

    LOG_RETENTION_HOURS=48
    

    (in your .env or system environment)

  • Threaded Cleanup: HoloLog launches a daemon thread to clean logs every hour. No user intervention needed.


Advanced Usage

  • Multiple Loggers: All loggers in your app will use the same log directory and handlers by default.

Notes

  • HoloLog is compatible with Python 3.8+ and all standard logging calls.
  • Log file deduplication works at the message-body level for maximum efficiency.
  • HoloLog is optimized for long-running, high-traffic, or mission-critical systems.

Code Examples

You can find code examples on my GitHub repository.


License

This project is licensed under the Apache License, Version 2.0. Copyright 2025 Tristan McBride Sr.


Acknowledgements

Project by:

  • Tristan McBride Sr.
  • Sybil

Release files for HoloLog 0.1.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for HoloLog 0.1.0
File Size Uploaded
hololog-0.1.0.tar.gz 3.3 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for HoloLog 0.1.0
File Interpreter ABI Platform
hololog-0.1.0-py3-none-any.whl Python 3 none any Details

Total release size: 6.3 kB

Release files / hololog-0.1.0.tar.gz

Download URL hololog-0.1.0.tar.gz
Size 3.3 kB
Tags Source
SHA-256 checksum
How to use checksums
7def48d0a21dd738953fc27a90e8efc68811031506f1e557b2b2a635fef12315
BLAKE2b-256 checksum
How to use checksums
ab85875bd64e7a908bccdd9f0ae2987d3f3ce314cc568a4f88ff8fe04e207bc9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / hololog-0.1.0-py3-none-any.whl

Download URL hololog-0.1.0-py3-none-any.whl
Size 3.1 kB
Tags Python 3
SHA-256 checksum
How to use checksums
ce6b16ad2c1ab882a76fa3ddf1aef87d097eea1d829a7b62fa7d19abe3a4674a
BLAKE2b-256 checksum
How to use checksums
66e7e8b53f46cb3607db5b002bd601ff8be6be8ec0f5fcd260ca6e7838d6afdb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release history Release notifications | RSS feed

This release

0.1.0 This release

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page