Updated: October 28, 2024 |
Log a formatted message
#include <qh/log.h>
int qh_log_ex(const qh_log_info_t *log_info, const char *fmt, ...)
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).
In most cases, call logging is 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.