Updated: October 28, 2024 |
A macro that logs a debug line trace message along with the originating filename, function, and line number, using the QH_LOG_SEVERITY_DEBUG2 severity level
#include <qh/log.h>
#define qh_log_linetrace(msg)
qh_log_linetrace();
qh_log_linetrace("extra info");
qh_log_linetrace(extra_info_string);
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.
EOK on success or a standard errno on failure. The errno variable is unmodified.