Updated: October 28, 2024 |
A macro that checks whether a message with the specified severity would be logged
#include <qh/log.h>
#define QH_LOG_CHECK(severity)
Given a message's severity, this function determines if it is logged when it is used in a logging call. It is simpler to use than qh_log_check() because it only requires a severity parameter. This function is useful when a message is expensive to build because the caller can determine whether to build a message based on whether it would be logged.
true if the message would be logged, and false otherwise.