XLOGF_IF

Log a message using a format string if and only if the specified condition predicate evaluates to true. Note that the condition is only evaluated if the log-level check passes.

Synopsis

Declared in <folly/logging/xlog.h>

#define XLOGF_IF(level, cond, fmt, ...)

Parameters

NameDescription
levelThe folly::LogLevel value at which to log.
condA predicate; the message is logged only when it is true.
fmtA folly::format-style format string for the message.