Skip to main content

A custom logging module for Python that supports colorized output and log file rotation. Includes features such as configurable log levels, custom formatters, and automatic deletion of old log files.

Project description

Logo Logo

fxlog

A custom logging module for Python that supports colorized output and log file rotation.

   License: MIT   Build    PyPI version   PyPI Downloads   Last Commit      GitHub Stars  

Table of Contents

About

A custom logging module for Python that supports colorized output and log file rotation. Includes features such as configurable log levels, custom formatters, and automatic deletion of old log files.

Installation

The package is available on PyPI and can be installed via pip:

python -m pip install fxlog

How-to Use

You can use the fxlog module in your Python scripts as follows:

Save Log Files

If you want to save the log files 1, import the fxlog module, and set the log directory where log files will be stored:

from fxlog import fxlogger

fxlogger.set_log_directory('path/to/log/directory')

E.g.,

import os
from pathlib import Path
from fxlog import fxlogger


_PACKAGE_NAME = "package_name"
DATA_DIR = (
    Path(os.getenv("APPDATA")) / _PACKAGE_NAME
    if os.name == "nt"
    else Path.home() / f".{_PACKAGE_NAME}"
)
LOG_DIR = DATA_DIR / "logs"
LOG_DIR.mkdir(parents=True, exist_ok=True)

fxlogger.set_log_directory(LOG_DIR)

[!NOTE] This only needs to be done once in your package.

Then, you can use the fxlog module to create a logger object and log messages to the console and a log file:

from fxlog import fxlogger

logger = fxlogger.configure_logger('my_logger')
logger.debug('This is a debug message')

To delete old log files, you can use the fxlog module as follows:

from fxlog import fxlogger

fxlogger.delete_old_logs(7) # Delete log files older than 7 days

You can also clear all log files in the log directory:

from fxlog import fxlogger

fxlogger.clear_logs()

[!NOTE] 1 The log files are constructed with the following naming convention: <logger_name>_<year>-<month>-<day>.log.

Do Not Save Log Files

If you don't want to save the log files, you can use the fxlog module as follows:

from fxlog import fxlogger

logger = fxlogger.configure_logger('my_logger', save_to_file=False)
logger.debug('This is a debug message')

Set Log Level

You can set the log level of all loggers by using the set_loggers_level function:

from fxlog import fxlogger

fxlogger.set_loggers_level(fxlogger.DEBUG) # You can also use `logging.DEBUG`

Set Formatter

By default, the output looks like this:

You can enable a colored output by setting the enable_color parameter to True. The messages will be colorized according to their log levels:

from fxlog import fxlogger

logger = fxlogger.configure_logger('my_logger', enable_color=True)
logger.debug('This is a debug message')

[!NOTE] Colors are not saved in log files.

[!WARNING] If enable_color is set to True but the terminal does not support colorized output, the messages will be displayed in their original form.

You can also enable a separator between log messages by setting the enable_separator parameter to True:

from fxlog import fxlogger

logger = fxlogger.configure_logger('my_logger', enable_separator=True)
logger.debug('This is a debug message')

Contact

Project Link: fxlog

GitHub   LinkedIn   Behance   Twitter   Instagram   Gumroad   Email   Buy Me A Coffee  

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

fxlog-0.2.2.tar.gz (1.7 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fxlog-0.2.2-py3-none-any.whl (16.1 kB view details)

Uploaded Python 3

File details

Details for the file fxlog-0.2.2.tar.gz.

File metadata

  • Download URL: fxlog-0.2.2.tar.gz
  • Upload date:
  • Size: 1.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.14

File hashes

Hashes for fxlog-0.2.2.tar.gz
Algorithm Hash digest
SHA256 08f774a1179a0b28f5e8f55c6e9ef13587fe0ddcd095f5c771a997f0c730d8fe
MD5 aa1b4b71e79910f9bfb599c050192aed
BLAKE2b-256 11d440e5a889e97f68f0d9c2fb71b9c40ff3e09e15942780c187ab1f9c041f36

See more details on using hashes here.

File details

Details for the file fxlog-0.2.2-py3-none-any.whl.

File metadata

  • Download URL: fxlog-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 16.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.14

File hashes

Hashes for fxlog-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 989310ac8f320a3c2d94dfa893c1cc3ae3783bf07eef1c8d5b5eaa76abade8f0
MD5 1c494d246ab9356d35373a36b7590b17
BLAKE2b-256 b45fedd73cfd25afa272b16e86f9b5638c70cb4a49c5483f64526ec843a82213

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page