ILogging#

class carb.logging.ILogging#

Bases: pybind11_object

Methods

__init__(*args, **kwargs)

add_logger(self, arg0)

get_level_threshold(self)

is_log_enabled(self)

remove_logger(self, arg0)

reset(self)

set_level_threshold(self, arg0)

set_level_threshold_for_source(self, arg0, ...)

set_log_enabled(self, arg0)

set_log_enabled_for_source(self, arg0, arg1, ...)

__init__(*args, **kwargs)#
add_logger(
self: carb._carb.logging.ILogging,
arg0: Callable[[str, int, str, int, str], None],
) carb._carb.logging.LoggerHandle#
get_level_threshold(self: carb._carb.logging.ILogging) int#
is_log_enabled(self: carb._carb.logging.ILogging) bool#
remove_logger(
self: carb._carb.logging.ILogging,
arg0: carb._carb.logging.LoggerHandle,
) None#
reset(self: carb._carb.logging.ILogging) None#
set_level_threshold(
self: carb._carb.logging.ILogging,
arg0: int,
) None#
set_level_threshold_for_source(
self: carb._carb.logging.ILogging,
arg0: str,
arg1: carb._carb.logging.LogSettingBehavior,
arg2: int,
) None#
set_log_enabled(
self: carb._carb.logging.ILogging,
arg0: bool,
) None#
set_log_enabled_for_source(
self: carb._carb.logging.ILogging,
arg0: str,
arg1: carb._carb.logging.LogSettingBehavior,
arg2: bool,
) None#