Skip to content

Releases: adafruit/Adafruit_CircuitPython_Logging

5.2.4 - Fix RTD Theme Issue

25 Sep 16:01
Compare
Choose a tag to compare

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

12 May 23:07
3f28136
Compare
Choose a tag to compare

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

12 May 22:44
4903449
Compare
Choose a tag to compare

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

06 Jan 00:11
2a95673
Compare
Choose a tag to compare

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

05 Jan 17:55
0396d8a
Compare
Choose a tag to compare

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

20 Dec 13:55
01f33e9
Compare
Choose a tag to compare

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

12 Dec 22:58
ebf01e1
Compare
Choose a tag to compare

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

15 Nov 17:29
a67856d
Compare
Choose a tag to compare

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

24 Oct 14:36
471f0b7
Compare
Choose a tag to compare

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

10 Oct 15:47
e5036ac
Compare
Choose a tag to compare

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.