diff options
author | Werner Koch <[email protected]> | 2019-06-05 13:48:33 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2019-06-05 13:54:55 +0000 |
commit | 8f9f3224aac78ce9d54e19e73acf7ab659787168 (patch) | |
tree | 4d360f78409119a3acb9b2f26c31e6183bb71292 /src/data-compat.c | |
parent | core: Avoid explicit locks in the debug code. (diff) | |
download | gpgme-8f9f3224aac78ce9d54e19e73acf7ab659787168.tar.gz gpgme-8f9f3224aac78ce9d54e19e73acf7ab659787168.zip |
core: Improve the debug messages even more.
* src/debug.c (_gpgme_debug): Add arg LINE. Chnage all callers.
(_gpgme_debug_begin): Remove.
* src/debug.h (TRACE_SEQ): Use the LINE arg of _gpgme_debug.
--
This includes chnages to always print fds in decimal as weel as
tweaking the TARCE_SEQ function to make use of the new machinery.
The standard 'tag' can now always be NULL and no tag information will
be printed.
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'src/data-compat.c')
-rw-r--r-- | src/data-compat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data-compat.c b/src/data-compat.c index 64ed2d28..4960bf49 100644 --- a/src/data-compat.c +++ b/src/data-compat.c @@ -160,7 +160,7 @@ gpgme_error_to_errno (gpgme_error_t err) break; } } - TRACE (DEBUG_DATA, "gpgme:gpgme_error_to_errno", 0, + TRACE (DEBUG_DATA, "gpgme:gpgme_error_to_errno", NULL, "mapping %s <%s> to: %s", gpgme_strerror (err), gpgme_strsource (err), strerror (res)); gpg_err_set_errno (res); |