Prints a list of all the error-categories used by error messages. These are the categories used to filter messages via --filter.
()
| 7640 | |
| 7641 | |
| 7642 | def PrintCategories(): |
| 7643 | """Prints a list of all the error-categories used by error messages. |
| 7644 | |
| 7645 | These are the categories used to filter messages via --filter. |
| 7646 | """ |
| 7647 | sys.stderr.write("".join(f" {cat}\n" for cat in _ERROR_CATEGORIES)) |
| 7648 | sys.exit(0) |
| 7649 | |
| 7650 | |
| 7651 | def ParseArguments(args): |