Write the sequence of args, with no separators, to the console and output files (if you've configured an output file). Using the ERROR level. :param args: log the arguments
(self, *args)
| 590 | self.log(*args, level=WARN) |
| 591 | |
| 592 | def error(self, *args) -> None: |
| 593 | """ |
| 594 | Write the sequence of args, with no separators, |
| 595 | to the console and output files (if you've configured an output file). |
| 596 | Using the ERROR level. |
| 597 | |
| 598 | :param args: log the arguments |
| 599 | """ |
| 600 | self.log(*args, level=ERROR) |
| 601 | |
| 602 | # Configuration |
| 603 | # ---------------------------------------- |