summaryrefslogtreecommitdiff
path: root/doc/HACKING/Tracing.md
AgeCommit message (Collapse)Author
2020-03-26doc: Replace "underline" with "## Section name".Bartosz Duszel
This approach doesn't require variable-length underlines.
2018-07-05Fix everything that previously referred to src/orNick Mathewson
2018-02-07Fix spelling mistakes corresponding to ticket #23650Deepesh Pathak
2017-04-25More clarification on 13802Nick Mathewson
2017-04-25trace: Add a basic event-tracing infrastructure.David Goulet
This commit adds the src/trace directory containing the basics for our tracing subsystem. It is not used in the code base. The "src/trace/debug.h" file contains an example on how we can map our tor trace events to log_debug(). The tracing subsystem can only be enabled by tracing framework at compile time. This commit introduces the "--enable-tracing-debug" option that will make all "tor_trace()" function be maped to "log_debug()". Closes #13802 Signed-off-by: David Goulet <dgoulet@torproject.org>