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.

Clone this wiki locally