Log levels.
Gets the selected log level.
! Logs an event. \param severity Severity of the event: - HTS_LOG_ERROR means that something went wrong so that a task could not be completed. - HTS_LOG_WARNING means that something unexpected happened, but that execution can continue, perhaps in a degraded mode. - HTS_LOG_INFO means that something normal but significant happened. - HTS_LOG_DEBUG means that something normal and insignificant happened. - HTS_LOG_TRACE means that something happened that might be of interest when troubleshooting. \param context Context where the event occurred. Typically set to "__func__". \param format Format string with placeholders, like printf.
! Logs an event with severity HTS_LOG_DEBUG and default context. Parameters: format, ...
! Logs an event with severity HTS_LOG_ERROR and default context. Parameters: format, ...
! Logs an event with severity HTS_LOG_INFO and default context. Parameters: format, ...
! Logs an event with severity HTS_LOG_TRACE and default context. Parameters: format, ...
! Logs an event with severity HTS_LOG_WARNING and default context. Parameters: format, ...
Sets the selected log level.
Selected log level.
Undocumented in source.