Skip to content
Irina Nicolae edited this page Jan 30, 2019 · 3 revisions

Are there any logging facilities in ART?

ART uses the standard Python logging library. Following the recommended practice for Python libraries, ART provides the messages to be logged with the appropriate message level (ranging from DEBUG to ERROR), but leaves the logger configuration to the end user or application. Defining a logger in the code you are running will deliver the logging messages from the library in the selected output source. See here for a basic tutorial on Python logging.

What is the ART release schedule?

Starting with v0.4.0, a new release of ART will be provided end of each month. Each release will include the newly accumulated changes since the last one. The version number of the library will be increased depending on the changes that are made to the code, following SemVer convention.

Clone this wiki locally