File logging without the headache.
Filelogr is a lightweight zero dependency Python logging utility. Configure it once and forget it. It handles writing timestamped messages to a file, printing to console with colors and most importantly it's easy to use!
-
Easy setup
-
Zero dependencies
-
Timestamped file logging
-
Color coded console output
-
@Logger.trackand@Logger.catchdecorators for easy tracking
pip install filelogr
Why not? It's simple, easy to set up, and gives you more than you'd expect from a small logging utility
All it takes is a couple lines of code and Filelogr is ready
from filelogr import Logger
DATA_DIR = "path/to/data/directory"
LOG_FILE = "Example.log"
Logger.configure(data_dir=DATA_DIR, log_file=LOG_FILE)
Logger.log_action ("This is an info message.", tag="INFO", color="blue")Open an issue or suggest a feature here: GitHub: Futuregus/filelogr/issues
Email at: futuregus11@gmail.com

