-
Notifications
You must be signed in to change notification settings - Fork 1.2k
FAQ
Beat Buesser edited this page Jun 2, 2020
·
3 revisions
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.