Skip to main content

A simple and customizable logging library for Python.

Project description

LogAssist

A simple and customizable logging library for Python.

Installation

pip install LogAssist

Features

  • Easy to use and configure
  • Supports multiple log levels (debug, info, warning, error)
  • Outputs log messages to both console and file
  • Allows for log file removal on initialization
  • Provides datetime formatting for log messages

Usage

  1. Import the Logger class:
import LogAssist.log as Logger
  1. Initialize the logger with your desired settings:
Logger.init(config=my_config_dictionary)
# or
Logger.init()
  1. Use the logger in your code:
Logger.verbose('MyTag', 'This is a verbose message')
Logger.debug('MyTag', 'This is a debug message')
Logger.info('MyTag', 'This is an info message')
Logger.warn('MyTag', 'This is a warning message')
Logger.error('MyTag', 'This is an error message')
Logger.exception('MyTag', 'This is a exception message')

Configuration

You can configure the logger using a JSON configuration. Below is an example of a configuration and explanations for each field.

Example Usage:

{
    "base": {
        "name": "MyLogger",
        "level": "debug"
    },
    "console": {
        "level": "debug",
        "format": "%(asctime)s[%(levelname)s]%(message)s"
    },
    "file_timed": {
        "level": "info",
        "format": "%(asctime)s[%(levelname)s]%(message)s",
        "file_name": "default.log",
        "when": "midnight",
        "interval": 1,
        "backup_count": 30
    }
}

Configuration Fields

base

  • name: The identifier for the logger. Default is 'MyLogger'.
  • level: The minimum log level to set (debug, info, warn, error, exception). Default is 'debug'.

console

  • level: The minimum log level for console output (debug, info, warn, error, exception). Default is 'debug'.
  • format: Defines the log message format for console output. Default is %(asctime)s[%(levelname)s]%(message)s.

file_timed

  • level: The minimum log level for file output (debug, info, warn, error, exception). Default is 'info'.
  • format: Defines the log message format for file output. Default is %(asctime)s[%(levelname)s]%(message)s.
  • file_name: The file name to use for logging. Default is 'default.log'.
  • when: The time interval for rotating the log file (e.g., 'midnight'). Default is 'midnight'.
  • interval: Defines how often the log file is rotated. Default is 1.
  • backup_count: Specifies the number of backup files to keep. Default is 30.

Use this JSON configuration to initialize your logger with the desired settings.

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

logassist-1.1.1.tar.gz (4.4 kB view details)

Uploaded Source

Built Distribution

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

LogAssist-1.1.1-py3-none-any.whl (4.4 kB view details)

Uploaded Python 3

File details

Details for the file logassist-1.1.1.tar.gz.

File metadata

  • Download URL: logassist-1.1.1.tar.gz
  • Upload date:
  • Size: 4.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.1

File hashes

Hashes for logassist-1.1.1.tar.gz
Algorithm Hash digest
SHA256 46e0031056860d5387a447f1332c47648435f97d86430f11c86fdf476e6d5389
MD5 2164485c1da343287de82a9c5eead003
BLAKE2b-256 9e957f230688454bbdd3140b6eb8356b161351c8ddf75b67d9b29bf26dc023ab

See more details on using hashes here.

File details

Details for the file LogAssist-1.1.1-py3-none-any.whl.

File metadata

  • Download URL: LogAssist-1.1.1-py3-none-any.whl
  • Upload date:
  • Size: 4.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.1

File hashes

Hashes for LogAssist-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 3ea9b95f7387d2d8ba50b246a916eef7ee57bebf7f1e0b2f3c9937c2d6a5c2d8
MD5 94e01c908b8f98159109df075b819df6
BLAKE2b-256 8a7d6189657dd1b413502413f093ae3374b41912cea9c650686d39f3a3b113a5

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