Skip to main content

Small library for printing warnings and creating logs.

Project description

mylogging

Python versions PyPI version Downloads Language grade: Python Documentation Status License: MIT codecov

My python logging-warning module. It logs to console or to file based on configuration.

  1. It's automatically colorized and formatted to be more readable and noticeable (you can immediately see what errors are yours)
  2. It's possible to control logs and warnings behavior (ignore, once, always) as in warnings.
  3. It's possible to filter messages by level (INFO, DEBUG, WARNING, ERROR, CRITICAL) as in logging.

Motivation for this project is to be able to have one very simple code base for logging and warning at once and setup logging at one place, not in every project.

You can use one code for logging apps running on server (developers see what happens on server) and the same code for printing info and warnings from developed library.

Links

Official documentation - https://mylogging.readthedocs.io/

Official repo - https://github.com/Malachov/mylogging

Installation

Python >=3.6 (Python 2 is not supported).

Install just with::

pip install mylogging

Output

This is how the results of examples below look like in console.

Logging output example

For log file, just open example.log in your IDE. This is how the results in log file opened in VS Code look like.

Logging output example

Examples

The library is made to be as simple as possible, so configuration should be easy (you don't need to configure anything actually)... Just setup path to log file (will be created if not exists). If you do not set it up, log to console will be used. Change filter (defaults to once) and level (defaults to WARNING) if you need. Then syntax is same as in logging module. Functions debug, info, warn, error and critical are available.

import mylogging

mylogging.config.level = "WARNING"
mylogging.warn("I am interesting warning.")

You can log your caught errors with traceback, where you set level as input parameter. You can use traceback also with no parameters, traceback type will be used as heading then. Stack trace in this example starts in the try block.

try:
    print(10 / 0)
except ZeroDivisionError:
    mylogging.traceback("Maybe try to use something different than 0.")

There is also a way how to work with raised errors. Stack trace is then used from the beginning of the script. Exceptions are formatted by default and it's not necessary to setup anything. If you want to turn this feature off, use

mylogging.my_traceback.enhance_excepthook_reset()

format_str will return edited string (Color, indent and around signs).

print function omit the details like file name, line etc. and print formatted text.

mylogging.print("No details about me.")

Another function is for ignoring specified warnings from imported libraries. Global warnings settings are edited, so if you use it in some library that other users will use, don't forget to reset user settings after end of your call with reset_filter_always() or use it in with catch_warnings(): block.

Sometimes only message does not work, then ignore it with class and warning type

import warnings

ignored_warnings = ["mean of empty slice"]
ignored_warnings_class_type = [
    ("TestError", FutureWarning),
]

mylogging.my_warnings.filter_always(ignored_warnings, ignored_warnings_class_type)

warnings.warn("mean of empty slice")  # No output

mylogging.my_warnings.reset_filter_always()

If somebody is curious how it looks like on light color theme, here it goes...

Logging output example

Config

Some config, that can be configured globally for not having to use in each function call.

Config values have docstrings, so description should be visible in IDE help.

output - Whether log to file or to console. Can be 'console' or path to file (string or pathlib.Path). Defaults by "console"

level - Set level of severity that will be printed, e.g. DEBUG, ERROR, CRITICAL. Defaults to 'WARNING'.

filter - If the same logs, print it always, once or turn all logging off. Possible values "ignore", "once", "always" or "error". Defaults to "once".

Usually that's everything you will set up. If you need different formatting of output, you can define

blacklist - You can filter out some specific messages by content.

formatter_console_str or formatter_file_str with for example::

"{asctime} {levelname} " + "{filename}:{lineno}" + "{message}"

Rest options should be OK by default, but it's all up to you of course: You can set up for example

around - Whether separate logs with line breaks and ==== or shrink to save space. Defaults to True.

colorize - Possible options: [True, False, 'auto']. Colorize is automated. If to console, it is colorized, if to file, it's not (.log files can be colorized by IDE). Defaults to 'auto'.

to_list - You can save all the logs in the list and log it later (use case: used in multiprocessing processes to be able to use once filter)

stream - If you want to use a stream (for example io.StringIO)

logger

It's possible to use logger in any other way if you need (though it's usually not necessary), you can find used logger in logger_module. There are also used filters and handlers.

multiprocessing

If using in subprocesses, to be able to use filters (just once), it's possible to redirect logs and warnings, send as results as log later in main process

logs_list = []
warnings_list = []

logs_redirect = mylogging.misc.redirect_logs_and_warnings(logs_list, warnings_list)

logs_redirect.close_redirect()

mylogging.misc.log_and_warn_from_lists(logs_list, warnings_list)

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

mylogging-4.0.6.tar.gz (21.3 kB view hashes)

Uploaded Source

Built Distribution

mylogging-4.0.6-py3-none-any.whl (25.8 kB view hashes)

Uploaded Python 3

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