(location, message, errorId)
| 1661 | return name, getArguments(token) |
| 1662 | |
| 1663 | def is_suppressed(location, message, errorId): |
| 1664 | for suppression in current_dumpfile_suppressions: |
| 1665 | if suppression.isMatch(location.file, location.linenr, message, errorId): |
| 1666 | return True |
| 1667 | return False |
| 1668 | |
| 1669 | def log_checker(message, addon): |
| 1670 | if '--cli' in sys.argv: |