from imgui_bundle import hello_imgui


def log_debug(msg):
    hello_imgui.log(hello_imgui.LogLevel.debug, msg)


def log_info(msg):
    hello_imgui.log(hello_imgui.LogLevel.info, msg)


def log_warning(msg):
    hello_imgui.log(hello_imgui.LogLevel.warning, msg)


def log_error(msg):
    hello_imgui.log(hello_imgui.LogLevel.error, msg)
