util::log::LogPrintFormatInternal

Format and log a message with rate limiting disabled.

Synopsis

Declared in <util/log.h>

template<typename... Args>
void
LogPrintFormatInternal(
    SourceLocation&& source_loc,
    BCLog::LogFlags flag,
    util::log::Level level,
    util::log::NoRateLimitTag no_rate_limit_tag,
    util::ConstevalFormatString<sizeof...(Args)> fmt,
    Args const&... args);

Parameters

NameDescription
source_locSource location the message originates from.
flagLogging category flag for the message.
levelSeverity level of the message.
no_rate_limit_tagTag selecting the non-rate-limited overload.
fmttinyformat format string.
argsFormat arguments substituted into fmt.