Updated: October 28, 2024 |
Log a formatted message using a variable-argument list
#include <qh/log.h>
int int qh_vlog_ex(const qh_log_info_t *log_info, const char *fmt, va_list arglist)
This function logs a formatted message to the set of active destinations. It includes the severity level set in the log information structure (log_info).
This function is a varargs version of qh_log_ex().
In most cases, logging calls are done using the QNX helpers logging macros (which in turn call qh_log_ex()) because they greatly simplify the calls, but you can also use this function directly.
Although QNX does not recommend it, if it's absolutely necessary, it is safe to call this function with log_info set to NULL, which specifies the default log information and context configuration.
EOK on success or a standard errno on failure. errno is unmodified.