XLOGF_EVERY_N_IF

Similar to XLOGF(...) except only log a message every

Synopsis

Declared in <folly/logging/xlog.h>

#define XLOGF_EVERY_N_IF(level, cond, n, fmt, ...)

Description

See concurrency discussion for XLOG_EVERY_N which applies here as well.

Parameters

NameDescription
ninvocations, approximately, and if the specified condition predicate evaluates to true.
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.