1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-08-10 22:41:51 +02:00

fix -qq docs

This commit is contained in:
Kelly Brazil
2021-09-23 11:54:58 -07:00
parent 98a7686db4
commit dc1fd3ef1b
4 changed files with 12 additions and 12 deletions

View File

@@ -155,9 +155,9 @@ Most parsers load all of the data from STDIN, parse it, then output the entire J
#### Ignoring Errors
You may want to ignore parsing errors when using streaming parsers since these may be used in long-lived processing pipelines and errors can break the pipe. To ignore parsing errors, use the `-q` cli option or the `quiet=True` argument with the `parse()` function. This will add a `_meta` object to the JSON output with a `success` attribute. If `success` is `true`, then there were no issues parsing the line. If `success` is `false`, then a parsing issue was found and `error` and `line` fields will be added to include a short error description and the contents of the unparsable line, respectively:
You may want to ignore parsing errors when using streaming parsers since these may be used in long-lived processing pipelines and errors can break the pipe. To ignore parsing errors, use the `-qq` cli option or the `ignore_exceptions=True` argument with the `parse()` function. This will add a `_meta` object to the JSON output with a `success` attribute. If `success` is `true`, then there were no issues parsing the line. If `success` is `false`, then a parsing issue was found and `error` and `line` fields will be added to include a short error description and the contents of the unparsable line, respectively:
Successfully parsed line with `-q` option:
Successfully parsed line with `-qq` option:
```json
{
"command_data": "data",
@@ -166,7 +166,7 @@ Successfully parsed line with `-q` option:
}
}
```
Unsuccessfully parsed line with `-q` option:
Unsuccessfully parsed line with `-qq` option:
```json
{
"_meta": {