Prints a list of all the error-categories used by error messages. These are the categories used to filter messages via --filter.
()
| 6716 | sys.exit(0) |
| 6717 | |
| 6718 | def PrintCategories(): |
| 6719 | """Prints a list of all the error-categories used by error messages. |
| 6720 | |
| 6721 | These are the categories used to filter messages via --filter. |
| 6722 | """ |
| 6723 | sys.stderr.write(''.join(' %s\n' % cat for cat in _ERROR_CATEGORIES)) |
| 6724 | sys.exit(0) |
| 6725 | |
| 6726 | |
| 6727 | def ParseArguments(args): |