Skip to main content

A logger for python

Project description

Gamu Logger - Python Version

📚 Table of Contents

🔨 Installation

The package is available in the assets of the latest release on github.

You can manually download the package and install it with pip:

pip install path/to/gamu_logger-2.0.0-py3-none-any.whl

Or install it directly from github (recommended):

pip install https://github.com/GamuNetwork/logger/releases/download/2.0.0/gamu_logger-2.0.0-py3-none-any.whl

note: replace 2.0.0 with the version number you want to install.

💡 Usage

  • First you need to import the package:
    from gamuLogger import deepDebug, debug, info, warning, error, critical, Logger, LEVELS, SENSITIVE_LEVELS
    

note: you can also only import the members you need instead of importing all of them.

  • Then you can use the functions like this:
    info('This is an info message')
    warning('This is a warning message')
    error('This is an error message')
    

You may note that the logging function are also available as static methods in the Logger class. This allow you to have them encapsulated in a class and use them in a more object > oriented way:

from gamuLogger import Logger

Logger.info('This is an info message')
Logger.warning('This is a warning message')
Logger.error('This is an error message')

⚙️ Configuration

1. Basic Configuration

You can configure the logger using methods of the Logger class. Here is an example of how you can do it:

from gamuLogger import Logger, LEVELS, SENSITIVE_LEVELS

# default target is the standard output, name is 'stdout'

Logger.setLevel("stdout", LEVELS.INFO); # this mean yhat all logs with level less than INFO will be ignored

Logger.setSensitiveLevel("stdout", SENSITIVE_LEVELS.HIDE); # If a log message contains sensitive data, it will be hidden

Logger.addSensitiveData('myPasswordSecret'); # add 'myPasswordSecret' to the list of sensitive data (if a log message contains any of them, it will be hidden according to the sensitive level)

Logger.setModule('my-module'); # set the module name for this file to 'my-module' (this will be displayed in the log message) (by default, no module name is set)

Logger.addTarget("data.log", LEVELS.DEBUG, SENSITIVE_LEVELS.HIDE) # add a new target to the logger (this will log all messages with level less than DEBUG to the file 'data.log' and hide sensitive data if any)

Please note that the logger can be used without any manual configuration. The default configuration is:

  • target: terminal
    • level: INFO
    • sensitive mode: HIDE
  • sensitive data: []
  • module name: None

Note that the module name is set only for the current file. If you want to set the module name for all files, you need to set it in each file.

2. Configuration with argparse

This module is compatible with argparse, and contains confugurations methods for the argument parser:

from gamuLogger import Logger
import argparse

parser = argparse.ArgumentParser()
Logger.configArgParse(parser) # this will add options to the parser, encapsulated in a group named 'Logger configuration'
args = parser.parse_args()
Logger.parseArgs(args) # this will apply the configuration from the arguments to the logger

3. Configuration from a file

3.1. JSON Configuration

3.2. XML Configuration

📁 Examples

you can find examples in the example directory.

📜 License

This project is licensed under the MIT License - see the LICENSE file for details.

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

gamulogger-2.0.5.tar.gz (13.5 kB view details)

Uploaded Source

Built Distribution

gamuLogger-2.0.5-py3-none-any.whl (13.5 kB view details)

Uploaded Python 3

File details

Details for the file gamulogger-2.0.5.tar.gz.

File metadata

  • Download URL: gamulogger-2.0.5.tar.gz
  • Upload date:
  • Size: 13.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for gamulogger-2.0.5.tar.gz
Algorithm Hash digest
SHA256 ed163ee141f955aee21da79894cab13afa73f5df633df5b95655d0365bbf6e5a
MD5 a54e214ff05678caa63ac2fc1575aa56
BLAKE2b-256 1533ccd9a36c08ad62a1210eab7a147a09b166d8345a88ba1151c23750391df4

See more details on using hashes here.

File details

Details for the file gamuLogger-2.0.5-py3-none-any.whl.

File metadata

  • Download URL: gamuLogger-2.0.5-py3-none-any.whl
  • Upload date:
  • Size: 13.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for gamuLogger-2.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 378d34cf320a76c4f49597f4821b22b54a8199b57a4c0cc554a8711e6c8cb42b
MD5 7628e804245a05fdf6be1b3b83fea8ac
BLAKE2b-256 d10b9202a1c6caab3161c3d189836f36cf5089d79d2e527fa282689c869e1826

See more details on using hashes here.

Supported by

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