Files
sm1.13-ripext/nghttp2/doc/nghttp2_set_debug_vprintf_callback.rst
jenz 08c03ac533
CI / Build (clang, clang++, ubuntu-22.04, linux, 3.10, master, x86,x86_64) (push) Canceled after 0s
CI / Build (clang, clang++, windows-2022, windows, 3.10, master, x86,x86_64) (push) Canceled after 0s
CI / Release (push) Canceled after 0s
first commit
2026-09-13 22:18:11 +01:00

30 lines
963 B
ReStructuredText

nghttp2_set_debug_vprintf_callback
==================================
Synopsis
--------
*#include <nghttp2/nghttp2.h>*
.. function:: void nghttp2_set_debug_vprintf_callback( nghttp2_debug_vprintf_callback debug_vprintf_callback)
Sets a debug output callback called by the library when built with
``DEBUGBUILD`` macro defined. If this option is not used, debug
log is written into standard error output.
For builds without ``DEBUGBUILD`` macro defined, this function is
noop.
Note that building with ``DEBUGBUILD`` may cause significant
performance penalty to libnghttp2 because of extra processing. It
should be used for debugging purpose only.
.. Warning::
Building with ``DEBUGBUILD`` may cause significant performance
penalty to libnghttp2 because of extra processing. It should be
used for debugging purpose only. We write this two times because
this is important.