summaryrefslogtreecommitdiffstats
path: root/doc/ChangeLog
diff options
context:
space:
mode:
authorMark Wielaard <[email protected]>2020-11-11 00:23:08 +0100
committerMark Wielaard <[email protected]>2020-11-23 16:58:36 +0100
commit609053a588a3857bb74a342c8468db77c3af88d4 (patch)
tree030ebe71f78690321a88c90afded6873d070e790 /doc/ChangeLog
parent371a4f814875ff47c75a76ec57a7a9098f5ab512 (diff)
debuginfod-client: Add debuginfod_set_verbose_fd and DEBUGINFOD_VERBOSE
Introduce a new function debuginfod_set_verbose_fd which will produce verbose output on a given file descriptor (STDERR_FILENO if the environment variable DEBUGINFOD_VERBOSE is set) showing how the search for a particular client query is going. Example output: debuginfod_find_debuginfo 1234567890 server urls "https://debuginfod.elfutils.org/ http://dbgd.usersys.com:3632/" checking build-id checking cache dir /home/mark/.cache/debuginfod_client using timeout 90 init server 0 https://debuginfod.elfutils.org/ url 0 https://debuginfod.elfutils.org/buildid/1234567890/debuginfo init server 1 http://dbgd.usersys.com:3632/ url 1 http://dbgd.usersys.com:3632/buildid/1234567890/debuginfo query 2 urls in parallel server response HTTP response code said error url 0 The requested URL returned error: 404 Not Found server response HTTP response code said error url 1 The requested URL returned error: 404 Not Found not found No such file or directory (err=-2) Signed-off-by: Mark Wielaard <[email protected]>
Diffstat (limited to 'doc/ChangeLog')
-rw-r--r--doc/ChangeLog7
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog
index 8c33f174..fdf352e7 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,10 @@
+2020-11-11 Mark Wielaard <[email protected]>
+
+ * debuginfod_find_debuginfo.3: Document debuginfod_set_verbose_fd
+ and DEBUGINFOD_VERBOSE.
+ * debuginfod_set_verbose_fd.3: New redirect to
+ debuginfod_find_debuginfo.3
+
2020-10-29 Frank Ch. Eigler <[email protected]>
PR26775