Rockwool logger with intelligent module filtering
Project description
rocklogger
A simple and flexible logging utility for Python applications with singleton pattern support and intelligent log filtering.
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')
Custom Log Directory
By default, log files are created in a 'logs' directory in the same location as your script. You can specify a custom base directory where the 'logs' folder will be created:
import os
from rocklogger import Rocklogger
# Specify a custom base directory where the 'logs' folder will be created
custom_base_dir = os.path.join(os.getcwd(), 'my_application')
logger = Rocklogger.get_instance(level='debug', base_dir=custom_base_dir).get_logger()
# Logs will now be stored in 'my_application/logs/' directory
logger.info('This log is stored in a custom location')
Log Files
By default, the logger creates two log files in a 'logs' directory in the same location as your script (or in your custom base directory if specified):
your_script_name_YYYYMMDD.log- Contains all log messagesyour_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()
Filtering Third-Party Library Logs
Rocklogger automatically filters out debug messages from common libraries that you might not be directly using. This prevents cluttering your logs with verbose internal messages from libraries like matplotlib, PIL, etc.
By default, the following modules are excluded from debug logs:
- matplotlib
- PIL
- fontTools
- tensorflow
- torch
- numpy
You can add additional modules to filter when initializing:
from rocklogger import Rocklogger
# Exclude additional modules at initialization
logger = Rocklogger.get_instance(
level='debug',
excluded_modules=['requests', 'urllib3', 'boto3']
).get_logger()
logger.debug('This debug message will appear')
# Debug messages from requests, urllib3, and boto3 will be filtered out
You can also add modules to filter dynamically:
# Get the Rocklogger instance
rocklogger_instance = Rocklogger.get_instance()
# Add a module to filter
rocklogger_instance.add_excluded_module('pandas')
rocklogger_instance.add_excluded_module('sqlalchemy')
# Now debug messages from pandas and sqlalchemy will also be filtered
This feature is especially useful when:
- Working with data visualization libraries that generate verbose debug output
- Using machine learning frameworks that produce many internal messages
- Integrating with third-party APIs where you don't need to see their internal logging
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file rocklogger-0.8.tar.gz.
File metadata
- Download URL: rocklogger-0.8.tar.gz
- Upload date:
- Size: 7.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb2afd4b8f233adb475df5050e46e1b83f0b279685f3f2d3f1cf431217ea9322
|
|
| MD5 |
e7e5f5fbcd483f5658755e1858592b55
|
|
| BLAKE2b-256 |
134e3427250d41fe551b6c972e9b713249ee325a2596a76d9f6c0aff777e9f6a
|
File details
Details for the file rocklogger-0.8-py3-none-any.whl.
File metadata
- Download URL: rocklogger-0.8-py3-none-any.whl
- Upload date:
- Size: 7.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f44c92b4b51bcf912d4a542f73bf9e217e976b204771b7434e5b9d82a19d584
|
|
| MD5 |
f3db6c580a9dea3d527e8971a7694e79
|
|
| BLAKE2b-256 |
262423881ddfd790e8ab806fc75343cacdf95ba0ddbbdbcf78637de149e6ffa3
|