is_level_not_tracing()

is_level_not_tracing()#

Determines whether a given trace level is explicitly disabled for a specified hgobj instance or globally.

Prototype

PUBLIC BOOL is_level_not_tracing(
    hgobj gobj_,
    uint32_t level
);

Parameters

Key

Type

Description

gobj_

hgobj

The object whose trace level is being checked. If NULL, the global trace level is considered.

level

uint32_t

The trace level to check.


Return Value

Returns TRUE if the specified trace level is disabled, otherwise returns FALSE.

Notes

If __deep_trace__ is greater than 1, tracing is always enabled, overriding any disabled levels.

Prototype

// Not applicable in JS

Prototype

# Not applicable in Python
Examples
// TODO C examples
// TODO JS examples
# TODO Python examples