From 4cc429d2761846967678fb8cf5868d311d1f7862 Mon Sep 17 00:00:00 2001 From: "Frank Ch. Eigler" Date: Mon, 17 Oct 2022 10:07:39 -0400 Subject: [PATCH] debuginfod: report libmicrohttpd version on startup To assist troubleshooting with intermittent bugs. Signed-off-by: Frank Ch. Eigler --- debuginfod/ChangeLog | 4 ++++ debuginfod/debuginfod.cxx | 2 ++ 2 files changed, 6 insertions(+) diff --git a/debuginfod/ChangeLog b/debuginfod/ChangeLog index 8fb65133f..59d50df1f 100644 --- a/debuginfod/ChangeLog +++ b/debuginfod/ChangeLog @@ -1,3 +1,7 @@ +2022-10-17 Frank Ch. Eigler + + * debuginfod.cxx (main): Report libmicrohttpd version. + 2022-09-28 Aaron Merey * debuginfod-client.c (debuginfod_query_server): Switch sign of some diff --git a/debuginfod/debuginfod.cxx b/debuginfod/debuginfod.cxx index 8e7ee4997..9dc4836bb 100644 --- a/debuginfod/debuginfod.cxx +++ b/debuginfod/debuginfod.cxx @@ -3956,6 +3956,8 @@ main (int argc, char *argv[]) } } + obatched(clog) << "libmicrohttpd version " << MHD_get_version() << endl; + /* If '-C' wasn't given or was given with no arg, pick a reasonable default for the number of worker threads. */ if (connection_pool == 0) -- 2.47.3