This python module ...
Information about this module can be found here:
With jk_logging
there is a logging module available that allows constructing loggers from a JSON based description, offers buffers for log messages and supports hierarchical logging. Unfortunately this particular module is synchroneous and therefore can not be used in Trio
directly. This implementation therefore wraps jk_logging
and provides an API usable in Trio
.
This module provides classes wrapping (almost all) classes from jk_logging
. It provides almost all functionality despite one: Descending hierarchically is not supported. (This might change one day, but not in the near future.)
This module can be installed easily using pip
.
Use this command for a system wide installation of this module:
$ sudo pip install jk-triologging
Use this command for user specific installation of this module:
$ pip install --user jk-triologging
The PiPy module is always kept in sync with the Github repository so using PyPi is equivalent to a manual installation using the code provided on Github.
Please include this module into your application using the following code:
import jk_triologging
Example:
log = jk_triologging.TrioConsoleLogger.create(logMsgFormatter=jk_triologging.COLOR_LOG_MESSAGE_FORMATTER)
Here we construct a console logger (which is an object that writes log messages to STDOUT.) It is configured for using colors for all output here.
You can create text based log messages and write them to the logger. Example:
await log.debug("This is a test for DEBUG.")
await log.notice("This is a test for NOTICE.")
await log.info("This is a test for INFO.")
await log.warning("This is a test for WARNING.")
await log.error("This is a test for ERROR.")
Exceptions can be logged as well. Example:
try:
await log.notice("Let's try a calculation that will fail ...")
a = 0
b = 5 / a
except Exception as ee:
await log.error(ee)
You can make use of the following log objects:
TrioBufferLogger
- implements a buffer for log messages, which later on can be forwareded to another loggerTrioConsoleLogger
- implements writing to STDOUTTrioFileLogger
- implements writing to a fileTrioFilterLogger
- implements filtering of log messages according to log levelTrioMulticastLogger
- implements forwarding log messages to multiple loggersTrioNamedMulticastLogger
- implements forwarding log messages to multiple loggersTrioNullLogger
- discards all log messagesTrioStringListLogger
- implements a buffer for log messages, where all log messages are stored a plain text strings
See the test
directory for detailed examples of all loggers.
This is Open Source code. That not only gives you the possibility of freely using this code it also allows you to contribute. Feel free to contact the author(s) of this software listed below, either for comments, collaboration requests, suggestions for improvement or reporting bugs:
- Jürgen Knauth: [email protected], [email protected]
This software is provided under the following license:
- Apache Software License 2.0