Logging made simple.
Project description
logpie
Logging made simple.
This is a simple logging module with thread & file locking abilities.
Installation:
python -m pip install [--upgrade] logpie
Usage:
# your `main.py` module
from os.path import dirname, realpath, join
from sys import modules
from types import ModuleType
from cfgpie import get_config, CfgParser
from logpie import get_logger, Logger
# **************************** config constants: **************************** #
# main module
MODULE: ModuleType = modules.get("__main__")
# root directory
ROOT: str = dirname(realpath(MODULE.__file__))
# default config file path:
CONFIG: str = join(ROOT, "config", "cfgpie.ini")
# backup config params:
BACKUP: dict = {
"LOGGER": {
"basename": "logpie", # if handler is `file`
"folder": r"${DEFAULT:directory}\logs",
"handler": "file", # or `console` or `nostream` (no output)
"debug": True, # if set to `True` it will also print `DEBUG` messages
}
}
# NOTE: The constants above serve the usage example
# and you can use whatever suits you best.
# ********************** get `ConfigParser` instance: *********************** #
cfg: CfgParser = get_config(name="my_config")
cfg.set_defaults(directory=ROOT)
cfg.open(file_path=CONFIG, encoding="UTF-8", fallback=BACKUP)
# ************************* get `Logger` instance: ************************** #
log: Logger = get_logger(name="my_logger", config=cfg)
# we can pass a config instance
or
log: Logger = get_logger(name="my_logger", config="my_config")
# it will look for a config instance named `my_config`
or
log: Logger = get_logger(name="my_logger", basename="logpie", handler="file", debug=True)
# it will create and use its own config instance
log.debug("Testing debug messages...")
log.info("Testing info messages...")
log.warning("Testing warning messages...")
log.error("Testing error messages...")
log.critical("Testing critical messages...")
By default, debugging is set to False and must be enabled to work.
The log file is prefixed with a date and will have an index number attached before the extension (ex: 2022-08-01_logpie.1.log
).
When it reaches 1 Mb
the file handler will switch to another file by incrementing its index with 1
.
The folder tree is by default structured as follows:
.
└───logs
└───year (ex: 2022)
└───month (ex: january)
├───2022-08-01_logpie.1.log
├───2022-08-01_logpie.2.log
└───2022-08-01_logpie.3.log
When the current month changes, a new folder is created and the previous one is archived.
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 Distribution
Built Distribution
File details
Details for the file logpie-1.0.3.tar.gz
.
File metadata
- Download URL: logpie-1.0.3.tar.gz
- Upload date:
- Size: 8.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4e4808cb56ed7488259a859d0b288c7d2b372ab4a39668c8f1a79fe85fe5afec |
|
MD5 | 0151ea22ca1a61e638112bde18f86d68 |
|
BLAKE2b-256 | d778c9f16567b8077edb1823bacfaa1277ce8b77ac506e25f3b39f491909a1dc |
File details
Details for the file logpie-1.0.3-py3-none-any.whl
.
File metadata
- Download URL: logpie-1.0.3-py3-none-any.whl
- Upload date:
- Size: 8.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3a274003e115677344338e67cdfd4a66fde64098d5a96314297c686661fc3fdb |
|
MD5 | c83636937a5e201fb9ef55bf3f7ccd25 |
|
BLAKE2b-256 | 647cd06ae7c95a4f42ea58a880d1cafb2a99934b5b1380a181f0f535abb0a9c8 |