Add option to report errors via e-mail
This commit is contained in:
parent
9a21cd3ad7
commit
158c322cda
19 changed files with 308 additions and 40 deletions
14
README.md
14
README.md
|
|
@ -27,3 +27,17 @@ Click on the image for the demo video
|
|||
Here is another Secret Video QR code just for the curious minded
|
||||
|
||||

|
||||
|
||||
|
||||
## Note to self
|
||||
|
||||
When checking error messages, `jq` can be a life saver.
|
||||
|
||||
Example getting the stack trace for a specific error message:
|
||||
|
||||
`jq -r '.[].errors[] | select(.message == "Parsing Error") | .stacktrace' errors.json`
|
||||
|
||||
Or getting all htmls if an error happened in the json:
|
||||
`jq '.[] | select(.errors[]?.message == "Parsing Error") | .errors[].html'`
|
||||
|
||||
> Use -r when you want to avoid the JSON string quotes around output.
|
||||
Loading…
Add table
Add a link
Reference in a new issue