Exzlogger
Extremely Easy Logger
This package is made to easily create logger that is suit for most of the situations, including following functions:
- allow user to set log directory
- the log information will be displayed on stdout, and will also be stored in the .log file
- allow user to set the information level for both stdout and log file
- nicely formatted log information, including the timestamp and information type
Parameters
stdout_level<str>: The log level to be used for stdout ('INFO', 'ERROR', 'DEBUG', or 'WARNING'), Defaults to 'INFO'.file_level<str>: The log level to be used for the log file ('INFO', 'ERROR', 'DEBUG', or 'WARNING'), Defaults to 'DEBUG'.log_file<str>: The path and name of the log file to write the log messages, defaults to 'log/log.log'.
Returns
logger<logging.Logger>: The initialized logger instance.
Dependencies
- pathlib
- logging
- sys
Useage
# Imports
from exzlogger import initialize_logger
logger = initialize_logger(stdout_level='INFO', file_level='DEBUG', log_file='logfile.log')
# Error & Debug (suggest to import traceback for debug)
logger.error(f"[func_name]: error message<{e}>")
logger.debug(f"[func_name]: error message<{e}>\n**********\n{traceback.format_exc()}**********")
# Info
logger.info(f"[func_name]: message")
# Warning
logger.warning(f"[func_name]: warning message")
Release files for exzlogger 0.0.2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| exzlogger-0.0.2.tar.gz | 3.1 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| exzlogger-0.0.2-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 7.0 kB
Release files / exzlogger-0.0.2.tar.gz
| Download URL | exzlogger-0.0.2.tar.gz |
|---|---|
| Size | 3.1 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
78256463fe63ebccf7d831a08e2527588edf1efe23ae34ee89733a90c2233649
|
|
BLAKE2b-256 checksum How to use checksums |
e4f8944ce3aa53cd33a942af46cb29fc0afc509b71be2513a03d5801ac1c0f83
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.10
|
Release files / exzlogger-0.0.2-py3-none-any.whl
| Download URL | exzlogger-0.0.2-py3-none-any.whl |
|---|---|
| Size | 3.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
7ceb0a1fb5328a826958aa176e1f5847b079a30e14d8ad6a9bfed11176c337da
|
|
BLAKE2b-256 checksum How to use checksums |
93d1020876735f66e93aead66828ad579b921fef658daf501f08ca07d06e09c1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.10
|