Prints a list of all the error-categories used by error messages. These are the categories used to filter messages via --filter.
()
| 6048 | |
| 6049 | |
| 6050 | def PrintCategories(): |
| 6051 | """Prints a list of all the error-categories used by error messages. |
| 6052 | |
| 6053 | These are the categories used to filter messages via --filter. |
| 6054 | """ |
| 6055 | sys.stderr.write(''.join(' %s\n' % cat for cat in _ERROR_CATEGORIES)) |
| 6056 | sys.exit(0) |
| 6057 | |
| 6058 | |
| 6059 | def ParseArguments(args): |