Skip to main content

Rockwool logger

Project description

rocklogger

A simple and flexible logging utility for Python applications with singleton pattern support.

PyPI

https://pypi.org/project/rocklogger/

Installation

pip install rocklogger

Usage

Basic Usage

from rocklogger import Rocklogger

# Initialize the logger using the singleton pattern
# level can be 'info', 'debug', 'warning', or 'error'
logger = Rocklogger.get_instance(level='debug', use_date_in_filename=True).get_logger()

# Log messages at different levels
logger.debug('This is a debug message')
logger.info('This is an info message')
logger.warning('This is a warning message')
logger.error('This is an error message')

Log Files

The logger creates two log files in a 'logs' directory in the same location as your script:

  1. your_script_name_YYYYMMDD.log - Contains all log messages
  2. your_script_name_error_YYYYMMDD.log - Contains only error level messages

If use_date_in_filename is set to False, the date will not be included in the filename.

Logging Exceptions

try:
    # Some code that might raise an exception
    result = 10 / 0
except Exception as e:
    logger.error(f"An error occurred: {e}", exc_info=True)

Singleton Pattern

Rocklogger implements the singleton pattern, ensuring that only one logger instance exists across your application:

# In your main script
from rocklogger import Rocklogger
logger = Rocklogger.get_instance(level='debug').get_logger()

# In another module
from rocklogger import Rocklogger
# This will use the same instance created in the main script
logger = Rocklogger.get_instance().get_logger()

Benefits:

  • Ensures consistent logging configuration across your application
  • Log files are named after the script that first created the logger
  • Prevents multiple log file handlers from being created

Important Note About Process Isolation

The singleton pattern works within a single Python process. When modules are imported within the same process, they will share the same logger instance:

# main.py
from rocklogger import Rocklogger
logger = Rocklogger.get_instance(level='debug').get_logger()
logger.info('Main script')

import module_a  # Will use the same logger instance
import module_b  # Will also use the same logger instance

However, if you run separate Python scripts as independent processes, each process will have its own singleton instance:

# These will create separate logger instances
python script1.py
python script2.py

For applications with multiple entry points, consider creating a central logging module that's imported by all other modules.

Closing the Logger

When you're done with the logger, you can close it (optional):

# This is automatically done when the Rocklogger instance is garbage collected
logger.close()

Resetting the Logger (for testing)

If you need to reset the logger (mainly for testing purposes):

Rocklogger.reset()

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

rocklogger-0.6.tar.gz (5.9 kB view details)

Uploaded Source

Built Distribution

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

rocklogger-0.6-py3-none-any.whl (5.9 kB view details)

Uploaded Python 3

File details

Details for the file rocklogger-0.6.tar.gz.

File metadata

  • Download URL: rocklogger-0.6.tar.gz
  • Upload date:
  • Size: 5.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.6

File hashes

Hashes for rocklogger-0.6.tar.gz
Algorithm Hash digest
SHA256 54745c01a7289c671e921374035cab1306ba62504ea8b9b39d02145728578750
MD5 8815e37b51c645b2d66ac5f27c914f39
BLAKE2b-256 5e84357d1a5bb9ab998d310467500f87be43814330ddf339aa886aec18d5e46b

See more details on using hashes here.

File details

Details for the file rocklogger-0.6-py3-none-any.whl.

File metadata

  • Download URL: rocklogger-0.6-py3-none-any.whl
  • Upload date:
  • Size: 5.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.6

File hashes

Hashes for rocklogger-0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 cb2951f75fcf8486794b9f54602d1a8d567bf2b5a3686f96773401170bdacad5
MD5 fc76d08f4bf987c9b47fe9c51262aa7a
BLAKE2b-256 27c1275f9e860d8ab719b4a40dd51c4da7782d15436f1b724d016724a792aa75

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