Log with the severity 'DEBUG' on the logger corresponding to this instrument. :param msg: message to be logged (can contain PEP3101 formatting codes)
(self, msg, *args, **kwargs)
| 304 | self.log(logging.INFO, msg, *args, **kwargs) |
| 305 | |
| 306 | def log_debug(self, msg, *args, **kwargs): |
| 307 | """Log with the severity 'DEBUG' |
| 308 | on the logger corresponding to this instrument. |
| 309 | |
| 310 | :param msg: message to be logged (can contain PEP3101 formatting codes) |
| 311 | """ |
| 312 | |
| 313 | self.log(logging.DEBUG, msg, *args, **kwargs) |
| 314 | |
| 315 | def log_error(self, msg, *args, **kwargs): |
| 316 | """Log with the severity 'ERROR' |