Loguru based custom logging package for simple python projects.
Project description
Easily Launch Logging (el_logging)
- Custom basic logging module
- Loguru based custom logging package for simple python projects.
- Logging to files (all, error, json)
- Custom logging formats
- Custom options as a configs
- Colorful logging
- Multiprocess compatibility (Linux, macOS - 'fork', Windows - 'spawn')
Prerequisites
- Python (v3.6.12)
- PyPi (v21.1.2)
Getting started
1. Installation
A. PyPi install (Recommended)
## Install or upgrade el-logging package:
pip install --upgrade el-logging
## To uninstall package:
pip uninstall -y el-logging
B. Manually add to PYTHONPATH (Recommended for development)
## Clone repository by git
git clone git@bitbucket.org:ellexiinc/elcomm.git
## Install python dependencies
cd el_logging
pip install --upgrade pip
cat requirements.txt | xargs -n 1 -L 1 pip install --no-cache-dir
## Add current path to PYTHONPATH
export PYTHONPATH="$PWD:$PYTHONPATH"
C. Manually compile and setup (Not recommended)
## Clone repository by git
git clone git@bitbucket.org:ellexiinc/elcomm.git
## Building python package
cd el_logging
pip install --upgrade pip setuptools wheel
python setup.py build
## Install python dependencies with built package to current python environment
python setup.py install --record installed_files.txt
## To remove only installed el-logging package:
head -n 1 installed_files.txt | xargs rm -vrf
## To remove all installed files and packages:
cat installed_files.txt | xargs rm -vrf
2. Configuration (You can skip this step, if you don't want to configure)
IMPORTANT: First, check .env.example (environment variables) file.
Copy .env.example file to .env and change environment variables:
cp .env.example .env
vi .env
Make configs directory inside project's base directory and copy configs/logger.json file into configs. Then edit variable options:
mkdir $PROJECT/configs
cp configs/logger.json $PROJECT/configs/logger.json
vi $PROJECT/configs/logger.json
3. Import module
from el_logging import logger
logger.trace('Tracing...')
logger.debug('Debugging...')
logger.info('Logging info.')
logger.success('Success.')
logger.warning('Warning something.')
logger.error('Error occured.')
logger.critical('CRITICAL ERROR.')
def divide(a, b):
_result = 0
try:
_result = a / b
except ZeroDivisionError:
logger.error("'b' argument value is zero!")
raise
return _result
try:
divide(10, 0)
except Exception:
logger.exception("Failed to divide values:")
References
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
el_logging-0.1.17.tar.gz
(5.3 kB
view details)
File details
Details for the file el_logging-0.1.17.tar.gz
.
File metadata
- Download URL: el_logging-0.1.17.tar.gz
- Upload date:
- Size: 5.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 390432aa6a59506d48858497dee27bafcf7f6c7a332c44a687391f8c126fa056 |
|
MD5 | 0532ba4cc982564d854bb6269bac25ec |
|
BLAKE2b-256 | 425fc18882ccfecd2139065266bb8f0ff814ed0136160994afd88fef26e7b6ac |