Prints a list of all the error-categories used by error messages. These are the categories used to filter messages via --filter.
()
| 6223 | |
| 6224 | |
| 6225 | def PrintCategories(): |
| 6226 | """Prints a list of all the error-categories used by error messages. |
| 6227 | |
| 6228 | These are the categories used to filter messages via --filter. |
| 6229 | """ |
| 6230 | sys.stderr.write(''.join(' %s\n' % cat for cat in _ERROR_CATEGORIES)) |
| 6231 | sys.exit(0) |
| 6232 | |
| 6233 | |
| 6234 | def ParseArguments(args): |