Smart Reader Operation Python engine logging module
October 29, 2024 at 3:52 AMlogging module
*** PRELIMINARY ***
The logging class makes it possible to send debug messages to a USB host using the SpringCore Direct protocol.
Class documentation
| Type | Name | Description |
|---|---|---|
| Function | critical |
Log a message with level FATAL. This is reserved for the exceptions raised by the interpreter itself. |
| Function | debug |
Log a message with level DEBUG |
| Function | error |
Log a message with level ERROR |
| Function | exception |
Log a message with level ERROR; exception info is added to the message. This method should only be called from a user exception handler. |
| Function | info |
Log a message with level INFO |
| Function | log |
Log a message with the given level. |
| Function | warning |
Log a message with level WARNING |