Skip to content

Commit

Permalink
debug/1
Browse files Browse the repository at this point in the history
This def ensures the output of debug(m1,m2) is kept together.

See jqlang#2709 jqlang#2111 jqlang#2112
  • Loading branch information
pkoppstein committed Jul 13, 2023
1 parent ab2779e commit accf7d5
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 6 deletions.
26 changes: 21 additions & 5 deletions docs/content/manual/manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3075,13 +3075,29 @@ sections:
to invoke jq with the -n command-line option, otherwise
the first entity will be lost.
- title: "`debug`"
- title: "`debug`", "`debug(msgs)`"
body: |
Causes a debug message based on the input value to be
produced. The jq executable wraps the input value with
`["DEBUG:", <input-value>]` and prints that and a newline on
stderr, compactly. This may change in the future.
These two filters are like `.` but have as a side-effect the
production of one or more messages on stderr.
The message produced by the `debug` filter has the form
`["DEBUG:", <input-value>]` where <input-value> is a compact rendition of
the input value. This format may change in the future.
The `debug(msgd)` filter is defined as `(msgs | debug | empty), .`
thus allowing great flexibility in the content of the message,
while also allowing multi-line debugging statements to be created.
For example, the expression:
`1 as $x | 2 | debug("Entering function foo with $x == \($x)", .) | (.+1)`
would produce the value 3 but with the following two lines
being written to stderr:
["DEBUG:","Entering function foo with $x == 1"]
["DEBUG:",2]
- title: "`stderr`"
body: |
Expand Down
3 changes: 2 additions & 1 deletion src/builtin.jq
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,8 @@ def pick(pathexps):
. as $in
| reduce path(pathexps) as $a (null;
setpath($a; $in|getpath($a)) );

# ensure the output of debug(m1,m2) is kept together:
def debug(msgs): (msgs | debug | empty), .;
# SQL-ish operators here:
def INDEX(stream; idx_expr):
reduce stream as $row ({}; .[$row|idx_expr|tostring] = $row);
Expand Down

0 comments on commit accf7d5

Please sign in to comment.