Releases: adafruit/Adafruit_CircuitPython_Logging
5.2.4 - Fix RTD Theme Issue
To use in CircuitPython, simply install the Adafruit CircuitPython Bundle.
To use in CPython, pip3 install adafruit-circuitpython-logging
.
Read the docs for info on how to use it.
5.2.3 - RTD jQuery Fix
This release includes a fix for jQuery being included on the RTD pages containing documentation for the library. There is no functional change to the library itself.
To use in CircuitPython, simply install the Adafruit CircuitPython Bundle.
To use in CPython, pip3 install adafruit-circuitpython-logging
.
Read the docs for info on how to use it.
5.2.2 - Typing Information
This release includes a fix for passing None to the logging methods to make the behavior match CPython. Thanks @tyeth
To use in CircuitPython, simply install the Adafruit CircuitPython Bundle.
To use in CPython, pip3 install adafruit-circuitpython-logging
.
Read the docs for info on how to use it.
5.2.1 - Fixed docstring typo
Fixed a typo in one of the docstrings. Thanks @dsanders11!
To use in CircuitPython, simply install the Adafruit CircuitPython Bundle.
To use in CPython, pip3 install adafruit-circuitpython-logging
.
Read the docs for info on how to use it.
5.2.0 - Made StreamHandler terminator configurable
StreamHandler
now has the terminator
class attribute that allows for a configurable line ending terminator. The default is still the previous "\n"
. Thanks @dsanders11!
To use in CircuitPython, simply install the Adafruit CircuitPython Bundle.
To use in CPython, pip3 install adafruit-circuitpython-logging
.
Read the docs for info on how to use it.
5.1.1 - MQTT Handler Example
This release adds an example illustrating usage of a MQTT Handler. Thank you @vladak!
To use in CircuitPython, simply install the Adafruit CircuitPython Bundle.
To use in CPython, pip3 install adafruit-circuitpython-logging
.
Read the docs for info on how to use it.
5.1.0 - Multiple Handlers
This release allows the use of multiple handlers on a logger. Thank you @vladak!
To use in CircuitPython, simply install the Adafruit CircuitPython Bundle.
To use in CPython, pip3 install adafruit-circuitpython-logging
.
Read the docs for info on how to use it.
5.0.1 - Fixed pylint errors
To use in CircuitPython, simply install the Adafruit CircuitPython Bundle.
To use in CPython, pip3 install adafruit-circuitpython-logging
.
Read the docs for info on how to use it.
5.0.0 - Default Logging Level Warning
This release changes the default logging level to value 30
which is WARNING
level. This change aligns the API with CPython. This will change the behavior of your code if you left the default logging level configured, and used log messages at levels lower than WARNING
.
To use in CircuitPython, simply install the Adafruit CircuitPython Bundle.
To use in CPython, pip3 install adafruit-circuitpython-logging
.
Read the docs for info on how to use it.
4.2.0 - Allow Use of Root Logger
This release allows using the root logger by passing no arguments to get_logger()
. Thank you @tekktrik.
To use in CircuitPython, simply install the Adafruit CircuitPython Bundle.
To use in CPython, pip3 install adafruit-circuitpython-logging
.
Read the docs for info on how to use it.