Add your description here
Project description
UsefulLog
Yet another logging library - made by BravestCheetah, Used by BravestCheetah
The main class
Everything in this library builds upon the Logger class:
from usefullog import Logger
The Logger Class
To use the tool you first gotta initialize an instance of the Logger class, you can do it just like this, including the name of the project:
logger = Logger("My Awesome Project")
When logging simple data like this: logger.log("cool logs") youll get some output like this:
2025-08-16 12:51:00 ( Test ) | [LOG] cool logs
There are other log formats too! Here they are:
.info("This is some info") - 2025-08-16 12:51:00 ( Test ) | [INFO] This is some info
.warn("You have been warned!") - 2025-08-16 12:51:00 ( Test ) | [WARN] You have been warned!
.error("Something went wrong :(") - 2025-08-16 12:51:00 ( Test ) | [ERROR] Something went wrong :(
.critical("CRITICAL ERROR") - 2025-08-16 12:51:00 ( Test ) | [CRITICAL] CRITICAL ERROR
.raw("only contents :O") - only contents :O
.space() - Newline (\n)
All logs are colored using the termcolor library which should be compatible with your terminal - Not visible in the documentation, but its there :D
Customization
But the logger does have multiple optional arguments to customize your logs. Lets list them:
1. Subname - Logger("My Awesome Project", sub_name="cool subsystem")
Result:
2025-08-16 12:55:19 ( Test/cool subsystem ) | [LOG] This is a test log
Useful for separating different systems or parts of your codebase for easier debugging.
2. Disable Timestamps - logger = Logger("Test", do_timestamps=False)
Result:
( Test ) | [LOG] This is a test log
Useful to declutter logs if timestamps arent necessary, makes the logs look more clean
3. Save Logs - logger = Logger("Test", do_log_saving=True)
Saves Logs Into .log files by default in the /logs folder. Each new instance of the Logger class creates a new log file.
Useful for saving and sharing logs
4. Disable Log Printing - logger = Logger("Test", print_logs=False)
Disables printing for logs, when paired with log saving you can safely store logs without filling the terminal.
5. Color Saved Logs - logger = Logger("Test", do_saved_log_decolouring=False)
When False the argument will keep the coloruing characters in the save folder, though most text editors may display these as normal characters and not colour them colours can be viewed when using a tool like cat to print the contents to the terminal directly.
6. Change Log Folder - logger = Logger("Test", log_save_folder="other folder")
When used logs will be saved in that path instead of the default /logs
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 usefullog-0.8.4.tar.gz.
File metadata
- Download URL: usefullog-0.8.4.tar.gz
- Upload date:
- Size: 3.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c62ef99cb16bfe8c4af755391fda8be31a98aa9257d3e665f8bffda94f2dc5ca
|
|
| MD5 |
cbe591cae1e568d865a59107088d2d2e
|
|
| BLAKE2b-256 |
22f692a78a4aa6a3e2793a853b221bfff8a5cea64bfc35d25123c9a2310a1396
|
File details
Details for the file usefullog-0.8.4-py3-none-any.whl.
File metadata
- Download URL: usefullog-0.8.4-py3-none-any.whl
- Upload date:
- Size: 3.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6a2a8639a45a782d8b9c0b1307113669459ae2497ee147c0c6909d6b160a094
|
|
| MD5 |
ccb6bed9578cab11d4548cd9e9b65b4a
|
|
| BLAKE2b-256 |
a78a810560ea56c5c895f9518fc6a6396cc9d847a02c7875e78bdbb412b8a015
|