From 07ef97c414ef0370683a30a392223610912025fb Mon Sep 17 00:00:00 2001 From: pkoppstein Date: Thu, 13 Jul 2023 18:17:42 -0400 Subject: debug/1 (#2710) * debug/1 This def ensures the output of debug(m1,m2) is kept together. Closes #2709 #2111 #2112 --- jq.1.prebuilt | 50 ++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 48 insertions(+), 2 deletions(-) (limited to 'jq.1.prebuilt') diff --git a/jq.1.prebuilt b/jq.1.prebuilt index 37f40341..d4979985 100644 --- a/jq.1.prebuilt +++ b/jq.1.prebuilt @@ -3353,8 +3353,54 @@ Outputs all remaining inputs, one by one\. .P This is primarily useful for reductions over a program\'s inputs\. Note that when using \fBinputs\fR it is generally necessary to invoke jq with the \-n command\-line option, otherwise the first entity will be lost\. . -.SS "debug" -Causes a debug message based on the input value to be produced\. The jq executable wraps the input value with \fB["DEBUG:", ]\fR and prints that and a newline on stderr, compactly\. This may change in the future\. +.SS "debug, debug(msgs)" +These two filters are like \fB\.\fR but have as a side\-effect the production of one or more messages on stderr\. +. +.P +The message produced by the \fBdebug\fR filter has the form +. +.IP "" 4 +. +.nf + +["DEBUG:",] +. +.fi +. +.IP "" 0 +. +.P +where \fB\fR is a compact rendition of the input value\. This format may change in the future\. +. +.P +The \fBdebug(msgs)\fR filter is defined as \fB(msgs | debug | empty), \.\fR thus allowing great flexibility in the content of the message, while also allowing multi\-line debugging statements to be created\. +. +.P +For example, the expression: +. +.IP "" 4 +. +.nf + +1 as $x | 2 | debug("Entering function foo with $x == \e($x)", \.) | (\.+1) +. +.fi +. +.IP "" 0 +. +.P +would produce the value 3 but with the following two lines being written to stderr: +. +.IP "" 4 +. +.nf + +["DEBUG:","Entering function foo with $x == 1"] +["DEBUG:",2] +. +.fi +. +.IP "" 0 . .SS "stderr" Prints its input in raw and compact mode to stderr with no additional decoration, not even a newline\. -- cgit v1.2.3