[#XLOG_EVERY_MS_IF] = XLOG_EVERY_MS_IF :mrdocs: Similar to XLOG(...) except only log a message every == Synopsis Declared in `<folly/logging/xlog.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- #define XLOG_EVERY_MS_IF(level, cond, ms, ...) ---- == Description Note that this is threadsafe. == Parameters [cols="1,4"] |=== | Name| Description | *ms* | milliseconds and if the specified condition predicate evaluates to true. | *level* | The `folly::LogLevel` value at which to log. | *cond* | A predicate; the message is logged only when it is true. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#