Go to the source code of this file.
|
| def | robot.api.logger.console (msg, newline=True, stream='stdout') |
| | Writes the message to the console. More...
|
| |
| def | robot.api.logger.debug (msg, html=False) |
| | Writes the message to the log file using the DEBUG level. More...
|
| |
| def | robot.api.logger.error (msg, html=False) |
| | Writes the message to the log file using the ERROR level. More...
|
| |
| def | robot.api.logger.info (msg, html=False, also_console=False) |
| | Writes the message to the log file using the INFO level. More...
|
| |
| def | robot.api.logger.trace (msg, html=False) |
| | Writes the message to the log file using the TRACE level. More...
|
| |
| def | robot.api.logger.warn (msg, html=False) |
| | Writes the message to the log file using the WARN level. More...
|
| |
| def | robot.api.logger.write (msg, level='INFO', html=False) |
| | Writes the message to the log file using the given level. More...
|
| |