Contents

os_log_debug

Sends a debug-level message to the logging system.

Declaration

#define os_log_debug(log, format, ...)

Parameters

  • log:

    The Os_log_default constant or a custom log object previously created by the Os_log_create function.

  • format:

    A constant string or format string that produces a human-readable log message. See TP40004265.

Discussion

Calling this function is equivalent to calling the os_log_with_type function and specifying a log type of OS_LOG_TYPE_DEBUG.

See Also

Related Documentation

Log Messages