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   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.0.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.0-py3-none-any.whl (16.1 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: fxlog-0.2.0.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.0.tar.gz
Algorithm Hash digest
SHA256 e7ba6ab918dbf149aa0f94f8510eacb9429016e6b1c9a4e7d335e153163c54fa
MD5 96cafe8065b0213016ccc238165a27c6
BLAKE2b-256 37c52998ce78d35b7303b85a0d51e595d5f36b52b2b76610cb54f5c7c30eb9b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fxlog-0.2.0-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.0-py3-none-any.whl
Algorithm Hash digest
SHA256 dcc1675192eaa6ca686a80d637b4ab0901af5836071f512a863dff475d574136
MD5 287c8d3c2d72cfd9ea8f27b33b3b83c1
BLAKE2b-256 80ad9045bddea6c2211411f9df68006923ab0b9c42ddf140809ab7e718a6fa0b

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