Small library for printing warnings and creating logs.
Project description
mylogging
My python logging-warning module. It logs to console or to file based on configuration.
- It's automatically colorized and formatted to be more readable and noticeable (you can immediately see what errors are yours)
- It's possible to control logs and warnings behavior (ignore, once, always) as in warnings.
- 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.
For log file, just open example.log in your IDE. This is how the results in log file opened in VS Code look like.
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...
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file mylogging-4.0.6.tar.gz
.
File metadata
- Download URL: mylogging-4.0.6.tar.gz
- Upload date:
- Size: 21.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 53a2a28d3fda8dbaf783520bb1266ad90b40f3f09603dad8c7b927ce55b42a3f |
|
MD5 | 85a0b0b5c9a647daeca24f417933d439 |
|
BLAKE2b-256 | 3e87909ff2523c59e04f2bbc2b7554b1268cdf08aaacfd61c983de4b1a5682ed |
File details
Details for the file mylogging-4.0.6-py3-none-any.whl
.
File metadata
- Download URL: mylogging-4.0.6-py3-none-any.whl
- Upload date:
- Size: 25.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 59a8c1cb1b1797557178634a219ff21097462f07a3509fb4afb322763ef616ae |
|
MD5 | 6ac830eecab5dac0a689ffb6a19b7878 |
|
BLAKE2b-256 | 23f5732877dd2d18a3c89aa445e9260d25a905ded32439f95a7447b92c7f6c7c |