libgit2_d.trace

Undocumented in source.

Members

Aliases

git_trace_cb
alias git_trace_cb = void function(.git_trace_level_t level, const(char)* msg)

An instance for a tracing function

Enums

git_trace_level_t
enum git_trace_level_t

Available tracing levels. When tracing is set to a particular level, callers will be provided tracing at the given level and all lower levels.

Functions

git_trace_set
int git_trace_set(.git_trace_level_t level, .git_trace_cb cb)

Sets the system tracing configuration to the specified level with the specified callback. When system events occur at a level equal to, or lower than, the given level they will be reported to the given callback.

Meta