Updated: October 28, 2024 |
A macro that logs a message without any associated location information
#include <qh/log.h>
#define qh_log_noloc(severity, ...)
This macro is thread safe and guarantees that errno is the same when it returns as it was on entry.
The fmt parameter is omitted from the macro signature to prevent the compile-time warnings that occur when you use the -Wpedantic GCC option and there are no variable arguments in the macro.
For formatting parameters, see printf().
EOK on success or a standard errno on failure. errno is unmodified.