A simplified Python logging library with colored console output and automatic file logging
Project description
EasyLogger Usage Guide
A simplified Python logging library with colored console output and automatic file logging.
Installation
from easy_logger import EasyLogger
Basic Usage
Simple Logging
from easy_logger import EasyLogger
# Create a logger with default settings
logger = EasyLogger()
# 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")
logger.critical("This is a critical message")
Advanced Configuration
Custom Logger Name and Level
# Create a logger with custom name and log level
logger = EasyLogger(name="my_app", level="DEBUG")
Available log levels:
DEBUG- Detailed information for debuggingINFO- General informational messages (default)WARNING- Warning messagesERROR- Error messagesCRITICAL- Critical error messages
Custom Log Directory
from pathlib import Path
# Use a custom directory for log files
logger = EasyLogger(log_dir=Path("./custom_logs"))
# Or use a string path
logger = EasyLogger(log_dir="./app_logs")
Disable Colored Output
# Disable colored console output
logger = EasyLogger(enable_colors=False)
Combined Configuration
from pathlib import Path
# Combine multiple options
logger = EasyLogger(
name="my_app",
level="WARNING",
log_dir=Path("./app_logs"),
enable_colors=True
)
Logging Features
String Formatting
# Use % formatting
logger.info("User %s logged in", username)
logger.error("Failed to process %s: %s", filename, error_msg)
# Multiple arguments
logger.debug("Processing item %d of %d", current, total)
Exception Logging
# Log exceptions with traceback
try:
risky_operation()
except Exception as e:
logger.error("Operation failed", exc_info=True)
Extra Context
# Add extra context to log messages
logger.info("User action", extra={'user_id': 123, 'action': 'login'})
Features
Automatic Features
-
Colored Console Output: Automatically detects terminal color support
- DEBUG: Cyan
- INFO: Green
- WARNING: Yellow
- ERROR: Red
- CRITICAL: Purple
-
File Logging: Automatically saves logs to files
- Default location:
./logs/YYYYMMDD_log.txt - Format:
20260206_log.txt - Encoding: UTF-8
- Default location:
-
Dual Output: Logs are written to both console and file simultaneously
Type Safety
The library includes full type hints for better IDE support and type checking:
from easy_logger import EasyLogger
from pathlib import Path
logger: EasyLogger = EasyLogger(
name="my_app",
level="INFO",
log_dir=Path("./logs"),
enable_colors=True
)
Examples
Web Application Logging
from easy_logger import EasyLogger
logger = EasyLogger(name="web_app", level="INFO")
logger.info("Server started on port 8000")
logger.warning("High memory usage detected: 85%%")
logger.error("Database connection failed", exc_info=True)
Script Logging
from easy_logger import EasyLogger
from pathlib import Path
logger = EasyLogger(
name="data_processor",
level="DEBUG",
log_dir=Path("./script_logs")
)
logger.debug("Starting data processing")
logger.info("Processed %d records", record_count)
logger.warning("Skipped %d invalid records", invalid_count)
Production Logging
from easy_logger import EasyLogger
# Production: WARNING level, no colors for log aggregation
logger = EasyLogger(
name="production_app",
level="WARNING",
enable_colors=False
)
logger.warning("API rate limit approaching")
logger.error("Payment processing failed for order %s", order_id)
logger.critical("Database connection pool exhausted")
Log File Management
Log files are automatically created with the current date:
- Format:
YYYYMMDD_log.txt - Example:
20260206_log.txt - Location:
./logs/(or custom directory)
Each day creates a new log file, making it easy to manage and archive logs.
Notes
- The logger automatically creates the log directory if it doesn't exist
- Console colors are automatically disabled when output is redirected or piped
- File logs never contain color codes, only plain text
- Multiple logger instances can coexist with different configurations
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
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 easylogger2-0.1.0-py3-none-any.whl.
File metadata
- Download URL: easylogger2-0.1.0-py3-none-any.whl
- Upload date:
- Size: 6.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e1cfd76c68b682bf20f12c46a8138983b1f2e0ec1586eb940a9fb4dc44ace03
|
|
| MD5 |
cbf4244b9ec0d3a6fd8b2565ab148ef9
|
|
| BLAKE2b-256 |
e97f8404c5b3aae27aad7aa9a6009279f9a2230e62537c7b89d849ee3773fb23
|