
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
HoloLog
Advanced tools
Debug.txt, Info.txt, Warning.txt, Error.txt, Critical.txt) for easy tracking and analysis.HoloLog(logsDir) and start logging—no need to rewrite your codebase.pip install HoloLog
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)
LOG_RETENTION_HOURS in your .env or environment).LOG_RETENTION_HOURS environment variable.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.
logging calls.You can find code examples on my GitHub repository.
This project is licensed under the Apache License, Version 2.0. Copyright 2025 Tristan McBride Sr.
Project by:
FAQs
A modern way to auto log system errors
We found that HoloLog demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.